From the question you can probably tell that I don't know much about code! My question is this:
What does this code mean?
mnlong <- 280.460 + .9856474 * time
mnlong <- mnlong %% 360
mnlong[mnlong < 0] <- mnlong[mnlong < 0] + 360
I understand that the mnlong
and time
are variables but the %%
confuses me.
Could someone give me a basic description.
Thanks