Subpoint sun on earth #937
-
I have read the documentation, in front of that I made a definition in python/skyfield to calculate the sublat position of the sun on earth. My question is the definition correct, have no clou how to check the results. `def subpoint_sun(time):
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Happily, a quick Google search brings back a number of pages that identify the subsolar point. For example: https://www.timeanddate.com/worldclock/sunearth.php Try checking your result against that. Also, I think you can stop with the https://rhodesmill.org/skyfield/earth-satellites.html#satellite-longitude-latitude-and-height That would let you skip the step of generating an RA and dec. Good luck, and let us know what you find out! |
Beta Was this translation helpful? Give feedback.
Happily, a quick Google search brings back a number of pages that identify the subsolar point. For example:
https://www.timeanddate.com/worldclock/sunearth.php
Try checking your result against that.
Also, I think you can stop with the
apparent()
call and use that raw position to ask for a latitude and longitude:https://rhodesmill.org/skyfield/earth-satellites.html#satellite-longitude-latitude-and-height
That would let you skip the step of generating an RA and dec. Good luck, and let us know what you find out!