Is it possible to calculate the tilt of the moon crescent with Skyfield? Or directly? I know the crescent rocks back and forth and I would like to display it correctly.
https://www.calsky.com/cs.cgi/Moon/15?obs=4311082095747103&c=
# https://rhodesmill.org/skyfield/toc.html
from skyfield import api
tmsc = api.load.timescale()
planets = api.load('de421.bsp')
import datetime
import pytz
toposloc = api.Topos('50.9409116 N', '6.9576131 E') # Köln local position on earth
toposabs = planets['earth'] + toposloc # absolute position incl earth
DTUTC = datetime.datetime.now(datetime.timezone.utc)
# calc moon
astro = toposabs.at(tmsc.utc(DTUTC.year, DTUTC.month, DTUTC.day, DTUTC.hour, DTUTC.minute, DTUTC.second)).observe(planets['moon'])
app = astro.apparent()
alt, azi, distance = app.altaz()
altazmoon=[alt.degrees, azi.degrees] # save for later
_, lonmoon, _ = app.ecliptic_latlon()
Okay, thanks to stackoverflows recommendations I found this answer here which might be what I am looking for
Calculating moon face rotation as a function of Earth coordinates
I am currently testing this. At least for today it looks very accurate if I look out of the window. Way to go!
[edit:] I tested it for a week now and udpated the code below. Now everything seems to be on point. Thanks Stackoverflow