We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
HI !
Thanks for the great work ! Would it be possible to add the azimuth value to the list of sensors ?
Kind regards, WM
No response
The text was updated successfully, but these errors were encountered:
We will look into it.
Sorry, something went wrong.
I did calculate these here but I have them deeply embedded in the Solar Elevation formula.
Here is a quick breakout:
def solar_azimuth(solar_elevation, solar_hour_angle, latitude): elev = math.radians(solar_elevation) ha = math.radians(solar_hour_angle) lat = math.radians(latitude) az = math.degrees(math.asin( math.sin(ha) * math.sin(lat) / math.cos(elev) )) return az
I also have hour angle embedded, forgot to pull that out. I'll do that later if needed here if not in a PR.
No branches or pull requests
New Feature
HI !
Thanks for the great work ! Would it be possible to add the azimuth value to the list of sensors ?
Kind regards,
WM
Additional context
No response
The text was updated successfully, but these errors were encountered: