Wil Koch

Results 3 issues of Wil Koch

Per ARINC-424 this should be 270 (i.e., Section 5.270) however the [code](https://github.com/jack-laverty/arinc424/blob/main/src/arinc424/record.py#L2988) uses 109 (runway width reference). Because the parser does not support converting strings that are a numerical values...

Closes https://github.com/jack-laverty/arinc424/issues/21 To test, ``` import arinc424 arinc424.parse("SPACP PGUMPGSRW06LPGPG 0 18018002625 M 217170804") ``` Expected results MSA Center has the correct length of 5, ``` +------------------------+----------+------------------+ | Field | Value...

Hey Jack, I just discovered this field is being incorrectly sliced from the record here: https://github.com/jack-laverty/arinc424/blob/main/src/arinc424/definitions/MSA.py#L41C13-L41C85 ` Field("MSA Center", r[13:17], decoder.field_144),` ARINC-424-18 specifies this should be 5 characters, it should...