-
-
Notifications
You must be signed in to change notification settings - Fork 821
New issue
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
Fixed equatorial grid with hour angle in decimal degrees #3970
Comments
Hour angles are defined as 0==upper culmination, counting hours from 0 to 24 hours. There are no negative values available. |
I'm from Germany. Is there any possibility to change it in the script? I was thinking something like this: setFlagFixedEquatorLabeled (const bool displayed) But I don't know how to use it. Thanks! |
Why you want to see from -180° to 180°? |
I need the program for educational purposes, so students should be able to determine the hour angle of the sun on their own. Therefore, I need to display the hour angle in decimal degrees. -180° should be north, -90° east, 0° south, ... |
But standard measurement of hour angles is 0..24 hours. Of course negative hours and angles possible for 12h standard of time (0..-12h and 0..12h). @gzotti are use in Europeian countries 24h or 12h standard for equatorial coordinate system? |
Shouldn't you be looking for azimuth rather than the hour angle? (This would still be 0°..360°, but at least you'd get this exact assignment of angles to cardinal directions, which the hour angle doesn't yield.) |
In many (German) books the hour angle is defined from -180° to 180°... |
I know what you mean, but im interested in the hour angle of the sun, and an ha of 0° should indicate midday (the directions aren't that important) |
Any ideas for this approach? |
A quick search in few French and German books - everything using 24h standard for an equatorial system (books from current century) |
Any example please |
The hour angle is a fundamental ingredient for equatorially mounted telescopes since probably the 1700s, i.e. uncomputerized, non-electronic. Scales on Equatorial mounts in many observatories of the 19th and 20th century, Zeiss telescopes, etc. are labelled 0..24 (hours). Computing it from sidereal time and right ascension is a trivial enough operation to train beginners with (or a first hurdle that separates amateur astronomers from touchscreen pushers). RA and HA are conventionally given in positive hours 0...24 (of 60 minutes of 60 seconds), not degrees, at least in the tradition of 19th-century German speaking Central Europe which has evolved since antiquity. One degree movement along the equator means 4 minutes of (sidereal) time have elapsed. It is however possible that astronomical navigation schools taught using a preference for degrees and even negative hour angles, this is visible in the Nautical Stars plugin where Local Hour Angle is available under the LHA key, however again counted 0...360°. @liam1616 I am not aware of German textbooks where hour angle would be counted negative. Please give two titles. Yes, working with angles or even hours makes computing slightly more difficult for primary schoolers of the tiktok generation, but in the age of programmable pocket calculators or lately spreadsheet programs it should not pose a significant problem, or just discuss it with your local LLM. Here the larger difficulty is the degree/radians question. If there is really need for setting flag number 895, we can add this. My first proposal would be to add it in the NavStar plugin to affect the LHA infotext only. |
|
I meant any textbook title |
Zenkert - Faszination Sonnenuhr (2000) |
Thank you. I was just looking for a possible quick fix, you dont need to change the program. |
OK, I think I have Zenkert, must check. But this is very specialized literature for another related field. Here a single author can use his own convention. Waiting for a second title, preferrably a widely available astronomical textbook, or identified photo of an equatorial mount in a professional observatory labelled in -180...180°. The WP entry does not count. It is written by whoever wanted to write it and has no reference. Your earlier comment about -180=north which @10110111 answered really makes it unclear whether you mean hour angle or azimuth. An hour angle of -180° (trivially also known as 12h) is lower culmination, be it north or south. |
Astronomie: Die kosmische Perspektive (Benn |
Astronomie: Die kosmische Perspektive (Bennett et al., 2020), page 134: if a star is going to pass the meridian in 1h, its hour angle is -1h or 23h So both ways seem possible. Can we add the feature? |
And how many text books did you now check which count 0...24 hours? OK, registered. One user wants feature flag 895. No, 896, the previous number was just reserved..., But it's super low priority. |
Thank you. When will it be available? |
When it's done. By then you will likely have learned to think in positive hours like the rest of us. |
If you close this, we will forget and never implement it. |
Oh sry, didn't know that, thanks. |
Hi,
I want to display the fixed equatorial grid (with hour angle in decimal degrees, declination in decimal degrees) in Stellarium 24.2 using scripts. I managed to display the grid using: GridLinesMgr.setFlagFixedEquatorGrid(true).
However, the degrees are going from 0° (south) to 360°, instead, i wish to display the degrees from -180° (north) to 180°. Which command do I have to use? Thank you!
The text was updated successfully, but these errors were encountered: