def findrefractivity(alt, step): ionoresidual = atmosphere.iono(alt, step) neutralresidual = atmosphere.neutral(alt, step) n = np.sum( 1 + (ionoresidual + neutralresidual) ) / step #produce the integral refractive index and divide by lenght to find average return n
def findrefractivity(alt, step): #must convert these to 32decimal ionoresidual = atmosphere.iono(alt, step) neutralresidual = atmosphere.neutral(alt, step) n = np.sum( (ionoresidual + neutralresidual) ) / step #produce the integral refractive index and divide by lenght to find average return n