frame_latlon_and_rates rate type #882
Replies: 1 comment 3 replies
-
(Did you perhaps press the submit button by accident before finishing your complete question?) |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I'm reading the documentation at https://rhodesmill.org/skyfield/examples.html#at-what-rate-is-a-target-moving-across-the-sky and it describes that the 4th and 5th values returned from
frame_latlon_and_rates()
are the altitude rate and azimuth rate, respectively. The code documents the function as:To me this implies that the rates are latitude and longitude rates of change, and the variable names also indicate that as well:
d, lat, lon, d_rate, lat_rate, lon_rate = _to_spherical_and_rates(r, v)
The code I have that exercises this function is very similar to the example and the
frame
argument is aGeographicPosition
:Questions:
frame_latlon_and_rate()s
include lat/lon rates or alt/az rates when passed aGeographicPosition
as the argument?Beta Was this translation helpful? Give feedback.
All reactions