I'm trying to plot ground tracks with the help of TLE data. However, there are some equations that contain "times", and I can't understand which time I should use and format. Like for example, TLE Epoch: 23270.52090061 How to use it? Should I only take .52090061 in consideration and convert it into seconds?
The equations are
$$1. \ \ M - M_0 = n\cdot(t - t_0) $$ and
$$2. \ \ Prime \ \ meridian \ \ Greenwich: \theta = \omega_E \cdot (t - t_0)$$
I wrote a code using TLE Data to transform ECI into ECEF. I calculated the vector $r_X$ and now I made a transformation Matrix like:
'''
def R_3 (prime_meridian): r_3 = np.array([[np.cos(prime_meridian), np.sin(prime_meridian), 0], [-np.sin(prime_meridian), np.cos(prime_meridian), 0], [ 0, 0 , 1]]) return r_3 prime_meridian = w_sid*( t - t_0) R_m = R_3(prime_meridian) '''
after that, I would like to make the rotation.
$$ r_x' = [R_3(\theta)]\cdot r_X $$