answersLogoWhite

0

The calculation is an hour for every 15 degrees you are away from the Greenwich meridian . You need to know your longitude , then do the calculation . Remember to do plus or minus depending if you are East or West....... eg. if you are in mid Atlantic somewhere , say 45 degrees West .....its minus three hours..

User Avatar

Wiki User

15y ago

Still curious? Ask our experts.

Chat with our AI personalities

JordanJordan
Looking for a career mentor? I've seen my fair share of shake-ups.
Chat with Jordan
DevinDevin
I've poured enough drinks to know that people don't always want advice—they just want to talk.
Chat with Devin
SteveSteve
Knowledge is a journey, you know? We'll get there.
Chat with Steve

Add your answer:

Earn +20 pts
Q: How do you calculate Greenwich hour angle?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Math & Arithmetic

C program to find the angle between the needles of a clock?

minute_deg = minute * 360 / 60 = minute * 6;The hour hand will make a complete revolution every hour, so its formula is:hour_deg = hour * 360 / 12 = hour * 30;A function to find the angle would be:int angleBetweenHands(int hour, int minute){if(hour > 12) // In case of 24 hour clockhour -= 12;int angle = hour * 30 - minute * 6;if(angle > 180)angle = 360 - angle;return(angle);}Read more: C_code_to_find_angle_between_hour_hand_and_minute_hand


Name of imaginary line at which 24 hour day begins?

Greenwich meridian


Can you show a 130 angle?

Yes, I can.It is the angle between the hour hand and 12 when the time is 4:20Yes, I can.It is the angle between the hour hand and 12 when the time is 4:20Yes, I can.It is the angle between the hour hand and 12 when the time is 4:20Yes, I can.It is the angle between the hour hand and 12 when the time is 4:20


How do you calculate the size of an angle?

Yes.


C code to find angle between hour hand and minute hand?

Lets start by thinking of a clock as a circle, with directly up being 0 degrees. At 12:00, both hands are at 0 pointing straight up. Every 60 minutes, the minute hand will make a complete revolution, so at any given time its angle is: minute_deg = minute * 360 / 60 = minute * 6; The hour hand will make a complete revolution every hour, so its formula is: hour_deg = hour * 360 / 12 = hour * 30; A function to find the angle would be: int angleBetweenHands(int hour, int minute) { if(hour > 12) // In case of 24 hour clock hour -= 12; int angle = hour * 30 - minute * 6; if(angle > 180) angle = 360 - angle; return(angle); }