An empty self.vtec array in decode_sbas_iono function causes a python3.13 runtime exception
within EGNOS bands 4 and 9 in this code
nigp = len(self.vtec[band])
I have temporarily fixed it with
` - nigp = len(self.vtec[band])
-
-
nigp = len(self.vtec[band])
-
-
`
but maybe there is a better solution.
An empty self.vtec array in decode_sbas_iono function causes a python3.13 runtime exception
within EGNOS bands 4 and 9 in this code
nigp = len(self.vtec[band])I have temporarily fixed it with
` - nigp = len(self.vtec[band])
`
but maybe there is a better solution.