├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ ├── ci.yml │ ├── publish.yml │ └── yarn-test.yml ├── .gitignore ├── .npmignore ├── .yarnrc.yml ├── CHANGELOG.md ├── README.md ├── SECURITY.md ├── babel.config.js ├── index.ts ├── jest.config.ts ├── lib ├── DateTimeUtils.ts ├── DecoderPlugin.ts ├── DecoderPluginInterface.ts ├── IcaoDecoder.ts ├── MessageDecoder.test.ts ├── MessageDecoder.ts ├── bin │ ├── acars-decoder-test.ts │ └── acars-decoder.ts ├── plugins │ ├── Label_10_LDR.test.ts │ ├── Label_10_LDR.ts │ ├── Label_10_POS.test.ts │ ├── Label_10_POS.ts │ ├── Label_10_Slash.test.ts │ ├── Label_10_Slash.ts │ ├── Label_12_N_Space.test.ts │ ├── Label_12_N_Space.ts │ ├── Label_12_POS.test.ts │ ├── Label_12_POS.ts │ ├── Label_13Through18_Slash.test.ts │ ├── Label_13Through18_Slash.ts │ ├── Label_15.test.ts │ ├── Label_15.ts │ ├── Label_15_FST.test.ts │ ├── Label_15_FST.ts │ ├── Label_16_N_Space.test.ts │ ├── Label_16_N_Space.ts │ ├── Label_16_POSA1.test.ts │ ├── Label_16_POSA1.ts │ ├── Label_16_TOD.test.ts │ ├── Label_16_TOD.ts │ ├── Label_1J_2J_FTX.test.ts │ ├── Label_1J_2J_FTX.ts │ ├── Label_1L_070.test.ts │ ├── Label_1L_070.ts │ ├── Label_1L_3-line.test.ts │ ├── Label_1L_3-line.ts │ ├── Label_1L_660.test.ts │ ├── Label_1L_660.ts │ ├── Label_1L_Slash.test.ts │ ├── Label_1L_Slash.ts │ ├── Label_1M_Slash.test.ts │ ├── Label_1M_Slash.ts │ ├── Label_20_CFB.01.ts │ ├── Label_20_POS.test.ts │ ├── Label_20_POS.ts │ ├── Label_21_POS.test.ts │ ├── Label_21_POS.ts │ ├── Label_22_OFF.test.ts │ ├── Label_22_OFF.ts │ ├── Label_22_POS.test.ts │ ├── Label_22_POS.ts │ ├── Label_24_Slash.test.ts │ ├── Label_24_Slash.ts │ ├── Label_2P_FM3.test.ts │ ├── Label_2P_FM3.ts │ ├── Label_2P_FM4.test.ts │ ├── Label_2P_FM4.ts │ ├── Label_2P_FM5.test.ts │ ├── Label_2P_FM5.ts │ ├── Label_2P_POS.test.ts │ ├── Label_2P_POS.ts │ ├── Label_30_Slash_EA.test.ts │ ├── Label_30_Slash_EA.ts │ ├── Label_44_ETA.test.ts │ ├── Label_44_ETA.ts │ ├── Label_44_IN.test.ts │ ├── Label_44_IN.ts │ ├── Label_44_OFF.test.ts │ ├── Label_44_OFF.ts │ ├── Label_44_ON.test.ts │ ├── Label_44_ON.ts │ ├── Label_44_POS.test.ts │ ├── Label_44_POS.ts │ ├── Label_4A.test.ts │ ├── Label_4A.ts │ ├── Label_4A_01.test.ts │ ├── Label_4A_01.ts │ ├── Label_4A_DIS.test.ts │ ├── Label_4A_DIS.ts │ ├── Label_4A_DOOR.test.ts │ ├── Label_4A_DOOR.ts │ ├── Label_4A_Slash_01.test.ts │ ├── Label_4A_Slash_01.ts │ ├── Label_4J_POS.test.ts │ ├── Label_4J_POS.ts │ ├── Label_4N.test.ts │ ├── Label_4N.ts │ ├── Label_4T_AGFSR.test.ts │ ├── Label_4T_AGFSR.ts │ ├── Label_4T_ETA.test.ts │ ├── Label_4T_ETA.ts │ ├── Label_58.test.ts │ ├── Label_58.ts │ ├── Label_5Z_Slash.test.ts │ ├── Label_5Z_Slash.ts │ ├── Label_80.test.ts │ ├── Label_80.ts │ ├── Label_83.test.ts │ ├── Label_83.ts │ ├── Label_8E.test.ts │ ├── Label_8E.ts │ ├── Label_B6.ts │ ├── Label_ColonComma.ts │ ├── Label_H1.test.ts │ ├── Label_H1.ts │ ├── Label_H1_FLR.test.ts │ ├── Label_H1_FLR.ts │ ├── Label_H1_FPN.test.ts │ ├── Label_H1_FTX.test.ts │ ├── Label_H1_INI.test.ts │ ├── Label_H1_OHMA.test.ts │ ├── Label_H1_OHMA.ts │ ├── Label_H1_POS.test.ts │ ├── Label_H1_PRG.test.ts │ ├── Label_H1_PWI.test.ts │ ├── Label_H1_Slash.test.ts │ ├── Label_H1_Slash.ts │ ├── Label_H1_StarPOS.test.ts │ ├── Label_H1_StarPOS.ts │ ├── Label_H1_WRN.test.ts │ ├── Label_H1_WRN.ts │ ├── Label_HX.test.ts │ ├── Label_HX.ts │ ├── Label_QP.ts │ ├── Label_QQ.test.ts │ ├── Label_QQ.ts │ ├── Label_QR.ts │ ├── Label_QS.ts │ ├── Label_SQ.test.ts │ ├── Label_SQ.ts │ └── official.ts ├── types │ ├── route.ts │ └── waypoint.ts └── utils │ ├── coordinate_utils.ts │ ├── flight_plan_utils.ts │ ├── h1_helper.ts │ ├── miam.test.ts │ ├── miam.ts │ ├── result_formatter.ts │ └── route_utils.ts ├── package.json ├── tsconfig.json └── tsup.config.ts /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/yarn-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/.github/workflows/yarn-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .yarn/ 2 | node_modules/ 3 | coverage/ 4 | dist/ 5 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | lib/ 2 | -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- 1 | nodeLinker: node-modules 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/SECURITY.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/index.ts -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/jest.config.ts -------------------------------------------------------------------------------- /lib/DateTimeUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/DateTimeUtils.ts -------------------------------------------------------------------------------- /lib/DecoderPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/DecoderPlugin.ts -------------------------------------------------------------------------------- /lib/DecoderPluginInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/DecoderPluginInterface.ts -------------------------------------------------------------------------------- /lib/IcaoDecoder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/IcaoDecoder.ts -------------------------------------------------------------------------------- /lib/MessageDecoder.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/MessageDecoder.test.ts -------------------------------------------------------------------------------- /lib/MessageDecoder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/MessageDecoder.ts -------------------------------------------------------------------------------- /lib/bin/acars-decoder-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/bin/acars-decoder-test.ts -------------------------------------------------------------------------------- /lib/bin/acars-decoder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/bin/acars-decoder.ts -------------------------------------------------------------------------------- /lib/plugins/Label_10_LDR.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_10_LDR.test.ts -------------------------------------------------------------------------------- /lib/plugins/Label_10_LDR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_10_LDR.ts -------------------------------------------------------------------------------- /lib/plugins/Label_10_POS.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_10_POS.test.ts -------------------------------------------------------------------------------- /lib/plugins/Label_10_POS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_10_POS.ts -------------------------------------------------------------------------------- /lib/plugins/Label_10_Slash.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_10_Slash.test.ts -------------------------------------------------------------------------------- /lib/plugins/Label_10_Slash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_10_Slash.ts -------------------------------------------------------------------------------- /lib/plugins/Label_12_N_Space.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_12_N_Space.test.ts -------------------------------------------------------------------------------- /lib/plugins/Label_12_N_Space.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_12_N_Space.ts -------------------------------------------------------------------------------- /lib/plugins/Label_12_POS.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_12_POS.test.ts -------------------------------------------------------------------------------- /lib/plugins/Label_12_POS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_12_POS.ts -------------------------------------------------------------------------------- /lib/plugins/Label_13Through18_Slash.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_13Through18_Slash.test.ts -------------------------------------------------------------------------------- /lib/plugins/Label_13Through18_Slash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_13Through18_Slash.ts -------------------------------------------------------------------------------- /lib/plugins/Label_15.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_15.test.ts -------------------------------------------------------------------------------- /lib/plugins/Label_15.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_15.ts -------------------------------------------------------------------------------- /lib/plugins/Label_15_FST.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_15_FST.test.ts -------------------------------------------------------------------------------- /lib/plugins/Label_15_FST.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_15_FST.ts -------------------------------------------------------------------------------- /lib/plugins/Label_16_N_Space.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_16_N_Space.test.ts -------------------------------------------------------------------------------- /lib/plugins/Label_16_N_Space.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_16_N_Space.ts -------------------------------------------------------------------------------- /lib/plugins/Label_16_POSA1.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_16_POSA1.test.ts -------------------------------------------------------------------------------- /lib/plugins/Label_16_POSA1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_16_POSA1.ts -------------------------------------------------------------------------------- /lib/plugins/Label_16_TOD.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_16_TOD.test.ts -------------------------------------------------------------------------------- /lib/plugins/Label_16_TOD.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_16_TOD.ts -------------------------------------------------------------------------------- /lib/plugins/Label_1J_2J_FTX.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_1J_2J_FTX.test.ts -------------------------------------------------------------------------------- /lib/plugins/Label_1J_2J_FTX.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_1J_2J_FTX.ts -------------------------------------------------------------------------------- /lib/plugins/Label_1L_070.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_1L_070.test.ts -------------------------------------------------------------------------------- /lib/plugins/Label_1L_070.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_1L_070.ts -------------------------------------------------------------------------------- /lib/plugins/Label_1L_3-line.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_1L_3-line.test.ts -------------------------------------------------------------------------------- /lib/plugins/Label_1L_3-line.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_1L_3-line.ts -------------------------------------------------------------------------------- /lib/plugins/Label_1L_660.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_1L_660.test.ts -------------------------------------------------------------------------------- /lib/plugins/Label_1L_660.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_1L_660.ts -------------------------------------------------------------------------------- /lib/plugins/Label_1L_Slash.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_1L_Slash.test.ts -------------------------------------------------------------------------------- /lib/plugins/Label_1L_Slash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_1L_Slash.ts -------------------------------------------------------------------------------- /lib/plugins/Label_1M_Slash.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_1M_Slash.test.ts -------------------------------------------------------------------------------- /lib/plugins/Label_1M_Slash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_1M_Slash.ts -------------------------------------------------------------------------------- /lib/plugins/Label_20_CFB.01.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_20_CFB.01.ts -------------------------------------------------------------------------------- /lib/plugins/Label_20_POS.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_20_POS.test.ts -------------------------------------------------------------------------------- /lib/plugins/Label_20_POS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_20_POS.ts -------------------------------------------------------------------------------- /lib/plugins/Label_21_POS.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_21_POS.test.ts -------------------------------------------------------------------------------- /lib/plugins/Label_21_POS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_21_POS.ts -------------------------------------------------------------------------------- /lib/plugins/Label_22_OFF.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_22_OFF.test.ts -------------------------------------------------------------------------------- /lib/plugins/Label_22_OFF.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_22_OFF.ts -------------------------------------------------------------------------------- /lib/plugins/Label_22_POS.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_22_POS.test.ts -------------------------------------------------------------------------------- /lib/plugins/Label_22_POS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_22_POS.ts -------------------------------------------------------------------------------- /lib/plugins/Label_24_Slash.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_24_Slash.test.ts -------------------------------------------------------------------------------- /lib/plugins/Label_24_Slash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_24_Slash.ts -------------------------------------------------------------------------------- /lib/plugins/Label_2P_FM3.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_2P_FM3.test.ts -------------------------------------------------------------------------------- /lib/plugins/Label_2P_FM3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_2P_FM3.ts -------------------------------------------------------------------------------- /lib/plugins/Label_2P_FM4.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_2P_FM4.test.ts -------------------------------------------------------------------------------- /lib/plugins/Label_2P_FM4.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_2P_FM4.ts -------------------------------------------------------------------------------- /lib/plugins/Label_2P_FM5.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_2P_FM5.test.ts -------------------------------------------------------------------------------- /lib/plugins/Label_2P_FM5.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_2P_FM5.ts -------------------------------------------------------------------------------- /lib/plugins/Label_2P_POS.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_2P_POS.test.ts -------------------------------------------------------------------------------- /lib/plugins/Label_2P_POS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_2P_POS.ts -------------------------------------------------------------------------------- /lib/plugins/Label_30_Slash_EA.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_30_Slash_EA.test.ts -------------------------------------------------------------------------------- /lib/plugins/Label_30_Slash_EA.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_30_Slash_EA.ts -------------------------------------------------------------------------------- /lib/plugins/Label_44_ETA.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_44_ETA.test.ts -------------------------------------------------------------------------------- /lib/plugins/Label_44_ETA.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_44_ETA.ts -------------------------------------------------------------------------------- /lib/plugins/Label_44_IN.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_44_IN.test.ts -------------------------------------------------------------------------------- /lib/plugins/Label_44_IN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_44_IN.ts -------------------------------------------------------------------------------- /lib/plugins/Label_44_OFF.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_44_OFF.test.ts -------------------------------------------------------------------------------- /lib/plugins/Label_44_OFF.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_44_OFF.ts -------------------------------------------------------------------------------- /lib/plugins/Label_44_ON.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_44_ON.test.ts -------------------------------------------------------------------------------- /lib/plugins/Label_44_ON.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_44_ON.ts -------------------------------------------------------------------------------- /lib/plugins/Label_44_POS.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_44_POS.test.ts -------------------------------------------------------------------------------- /lib/plugins/Label_44_POS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_44_POS.ts -------------------------------------------------------------------------------- /lib/plugins/Label_4A.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_4A.test.ts -------------------------------------------------------------------------------- /lib/plugins/Label_4A.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_4A.ts -------------------------------------------------------------------------------- /lib/plugins/Label_4A_01.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_4A_01.test.ts -------------------------------------------------------------------------------- /lib/plugins/Label_4A_01.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_4A_01.ts -------------------------------------------------------------------------------- /lib/plugins/Label_4A_DIS.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_4A_DIS.test.ts -------------------------------------------------------------------------------- /lib/plugins/Label_4A_DIS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_4A_DIS.ts -------------------------------------------------------------------------------- /lib/plugins/Label_4A_DOOR.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_4A_DOOR.test.ts -------------------------------------------------------------------------------- /lib/plugins/Label_4A_DOOR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_4A_DOOR.ts -------------------------------------------------------------------------------- /lib/plugins/Label_4A_Slash_01.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_4A_Slash_01.test.ts -------------------------------------------------------------------------------- /lib/plugins/Label_4A_Slash_01.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_4A_Slash_01.ts -------------------------------------------------------------------------------- /lib/plugins/Label_4J_POS.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_4J_POS.test.ts -------------------------------------------------------------------------------- /lib/plugins/Label_4J_POS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_4J_POS.ts -------------------------------------------------------------------------------- /lib/plugins/Label_4N.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_4N.test.ts -------------------------------------------------------------------------------- /lib/plugins/Label_4N.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_4N.ts -------------------------------------------------------------------------------- /lib/plugins/Label_4T_AGFSR.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_4T_AGFSR.test.ts -------------------------------------------------------------------------------- /lib/plugins/Label_4T_AGFSR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_4T_AGFSR.ts -------------------------------------------------------------------------------- /lib/plugins/Label_4T_ETA.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_4T_ETA.test.ts -------------------------------------------------------------------------------- /lib/plugins/Label_4T_ETA.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_4T_ETA.ts -------------------------------------------------------------------------------- /lib/plugins/Label_58.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_58.test.ts -------------------------------------------------------------------------------- /lib/plugins/Label_58.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_58.ts -------------------------------------------------------------------------------- /lib/plugins/Label_5Z_Slash.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_5Z_Slash.test.ts -------------------------------------------------------------------------------- /lib/plugins/Label_5Z_Slash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_5Z_Slash.ts -------------------------------------------------------------------------------- /lib/plugins/Label_80.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_80.test.ts -------------------------------------------------------------------------------- /lib/plugins/Label_80.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_80.ts -------------------------------------------------------------------------------- /lib/plugins/Label_83.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_83.test.ts -------------------------------------------------------------------------------- /lib/plugins/Label_83.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_83.ts -------------------------------------------------------------------------------- /lib/plugins/Label_8E.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_8E.test.ts -------------------------------------------------------------------------------- /lib/plugins/Label_8E.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_8E.ts -------------------------------------------------------------------------------- /lib/plugins/Label_B6.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_B6.ts -------------------------------------------------------------------------------- /lib/plugins/Label_ColonComma.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_ColonComma.ts -------------------------------------------------------------------------------- /lib/plugins/Label_H1.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_H1.test.ts -------------------------------------------------------------------------------- /lib/plugins/Label_H1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_H1.ts -------------------------------------------------------------------------------- /lib/plugins/Label_H1_FLR.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_H1_FLR.test.ts -------------------------------------------------------------------------------- /lib/plugins/Label_H1_FLR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_H1_FLR.ts -------------------------------------------------------------------------------- /lib/plugins/Label_H1_FPN.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_H1_FPN.test.ts -------------------------------------------------------------------------------- /lib/plugins/Label_H1_FTX.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_H1_FTX.test.ts -------------------------------------------------------------------------------- /lib/plugins/Label_H1_INI.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_H1_INI.test.ts -------------------------------------------------------------------------------- /lib/plugins/Label_H1_OHMA.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_H1_OHMA.test.ts -------------------------------------------------------------------------------- /lib/plugins/Label_H1_OHMA.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_H1_OHMA.ts -------------------------------------------------------------------------------- /lib/plugins/Label_H1_POS.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_H1_POS.test.ts -------------------------------------------------------------------------------- /lib/plugins/Label_H1_PRG.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_H1_PRG.test.ts -------------------------------------------------------------------------------- /lib/plugins/Label_H1_PWI.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_H1_PWI.test.ts -------------------------------------------------------------------------------- /lib/plugins/Label_H1_Slash.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_H1_Slash.test.ts -------------------------------------------------------------------------------- /lib/plugins/Label_H1_Slash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_H1_Slash.ts -------------------------------------------------------------------------------- /lib/plugins/Label_H1_StarPOS.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_H1_StarPOS.test.ts -------------------------------------------------------------------------------- /lib/plugins/Label_H1_StarPOS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_H1_StarPOS.ts -------------------------------------------------------------------------------- /lib/plugins/Label_H1_WRN.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_H1_WRN.test.ts -------------------------------------------------------------------------------- /lib/plugins/Label_H1_WRN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_H1_WRN.ts -------------------------------------------------------------------------------- /lib/plugins/Label_HX.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_HX.test.ts -------------------------------------------------------------------------------- /lib/plugins/Label_HX.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_HX.ts -------------------------------------------------------------------------------- /lib/plugins/Label_QP.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_QP.ts -------------------------------------------------------------------------------- /lib/plugins/Label_QQ.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_QQ.test.ts -------------------------------------------------------------------------------- /lib/plugins/Label_QQ.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_QQ.ts -------------------------------------------------------------------------------- /lib/plugins/Label_QR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_QR.ts -------------------------------------------------------------------------------- /lib/plugins/Label_QS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_QS.ts -------------------------------------------------------------------------------- /lib/plugins/Label_SQ.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_SQ.test.ts -------------------------------------------------------------------------------- /lib/plugins/Label_SQ.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/Label_SQ.ts -------------------------------------------------------------------------------- /lib/plugins/official.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/plugins/official.ts -------------------------------------------------------------------------------- /lib/types/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/types/route.ts -------------------------------------------------------------------------------- /lib/types/waypoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/types/waypoint.ts -------------------------------------------------------------------------------- /lib/utils/coordinate_utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/utils/coordinate_utils.ts -------------------------------------------------------------------------------- /lib/utils/flight_plan_utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/utils/flight_plan_utils.ts -------------------------------------------------------------------------------- /lib/utils/h1_helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/utils/h1_helper.ts -------------------------------------------------------------------------------- /lib/utils/miam.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/utils/miam.test.ts -------------------------------------------------------------------------------- /lib/utils/miam.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/utils/miam.ts -------------------------------------------------------------------------------- /lib/utils/result_formatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/utils/result_formatter.ts -------------------------------------------------------------------------------- /lib/utils/route_utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/lib/utils/route_utils.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airframesio/acars-decoder-typescript/HEAD/tsup.config.ts --------------------------------------------------------------------------------