I have a latitude vector and I need to rotate it throughout a time t.
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hello everybody! I need to simulate the Earth rotation, that is, I have a vector with the lattitudes (LatE = 0:0.5:90) and longitude as LatE = 0. I need to rotate the LatE points around the Earth, during a time t (defined). I need to save the differents points (LatE,LonE) throughout the time t. Latitudes are always the same but I don't know who to change the longitudes.
Thank you in advance
0 comentarios
Respuestas (1)
Mischa Kim
el 4 de Oct. de 2017
Ainoa, how about
dt = 60*60; % dt = 1 hr
t = 0:dt:24*60*60; % time vector spanning one full day
omega = 360/(24*60*60); % angular velocity of earth
LonE = omega*t
0 comentarios
Ver también
Categorías
Más información sobre Earth and Planetary Science en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!