我获得了从坐标中查找晴空辐射的代码,但我也希望根据美国云覆盖的历史数据调整该数字。我在哪里可以找到这个?
对于晴朗的天空辐射:
from pysolar.solar import *
date = datetime.datetime(year=2010,
month=1,
day=1,
hour=12,
minute=0,
second=0,
microsecond=0,
tzinfo=datetime.timezone.utc)
altitude_deg = get_altitude(latitude_deg, longitude_deg, date)
rad = radiation.get_radiation_direct(date, altitude_deg)