Searching along an orbit track #983
-
I am trying to use skyfield.searchlib to search for specific solar angles along a EarthSatellite ground track. I've been able to find the ground track, and to find angles for a specific point, but not in putting the two together. Here is my code for a simple demo:
Specifying a single point works fine, whether or not coordinates are array-like:
But when I search along a path, I get an error.
This error seems to be related to issue #539. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Interesting! I've never tried combining
Which, happily, seems to work fine! The problem seems to come in when you run routines like So I think you need to upgrade your |
Beta Was this translation helpful? Give feedback.
-
That was it - thank you!
|
Beta Was this translation helpful? Give feedback.
Interesting! I've never tried combining$n$ longitudes and latitudes with $n$ times, but, happily, it looks like the operation works fine in Skyfield:
Which, happily, seems to work fine!
The problem seems to come in when you ru…