Hello
A question for astronomy types, you know how during the year the sun moves across the sky, appearing earlier in the day and further to the east in the summer than it does during the winter. does this have a name?
What I want to do is write a python script to have the Pi take a photo with a webcam every day for a few weeks, capturing autumnal hues, with the sun in the same position in each photo, this is for a timelapse video. Taking the photo at the same time each day would have the sun moving left, or right, across the sky. So if I start on day one at 10:00, then day two might be 10:02, day three: 10:04 etc.
I've found a couple of python modules:
PyEphem: http://rhodesmill.org/pyephem/tutorial.html
PySolar: https://pysolar.readthedocs.io/en/latest/ (looks to be more to do with sun activity)
astral: https://pypi.python.org/pypi/astral/0.5
The first two have clearly been written by astronomers and use that special astronomer speak. Astral gives the sunrise, perhaps I could do a thing with that?
Thanks
Karl.