-
Notifications
You must be signed in to change notification settings - Fork 94
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
draw satellite orbit #87
Comments
You have to do it yourself. To calculate x and y position via For a complete implementation, have a look at starlitter.info and my messy source code starting from line 2110. |
Thank you. |
Hi @hmovahedim You need to ascertain the RA and dec values for whatever object you need (the current position would be for For example, if your satellite is geostationary ... it won't have this. So you don't need to worry. However, if the satellite orbits Earth, say once every 90-93 minutes ... extend your x and y calculation for plus / minus 45 - 46.5 minutes. Does that make sense? |
Hi @hmovahedim there isn't a simple way for you to do this because it isn't trivial. As has been said, you'd have to do a lot of the work yourself. You'll need to know the ins and outs of TLEs and the relevant maths for orbital calculations. Parallax is likely to be much more relevant for such close objects as satellites so, for me, this is very unlikely to be trivial. |
I can calculate RA and DEC so how can i draw line with RA and DEC ? |
@hmovahedim You can't draw a line with one point - you'll need at least two points for any meaningful line. There isn't a good simple answer to "draw a line". You will need to implement line drawing yourself. You could start by looking at the method drawConstellationLines. You could adapt that and remember that not everything in that will be appropriate for your purpose. For instance,
shows an object - You'll also need to make sure your new function gets called in
|
Hello
How can i draw satellite orbit from this orbital element(TLE) ?
The text was updated successfully, but these errors were encountered: