Architecture
°ÇÃà Architecture


ÇöÀç À§Ä¡

  1. Home
  2. ±âŸ Etc
  3. ´ÜÀ§ Unit

Converting the unit of angle, degree to degree-minute-second

ÀÛ¼ºÀÚ Uploader : ezetc ÀÛ¼ºÀÏ Upload Date: 2016-06-03º¯°æÀÏ Update Date: 2016-06-03Á¶È¸¼ö View : 547

1 degree = 60 minutes and 1 minute = 60 seconds.
Thus, M minutes = M/60 degree and S seconds = S/3600 degree.

If Deg is a angle expressed real number, the integer part of angle is degree of angle:  
a = int(Deg) and the rest part r1 is r1 = Deg - a.
Minutes and rest value can be obtained by following formula.
b = int(r1*60), r2 = r1*60 - b
Using same way, seconds can be obtained.
c = r2*60

To express all numbers (degree, minute and second) in one number, shift the location of numbers by multiplying 10000 and 100 to a and b respectively.
A = a*10000, B = b*100

Finally, Degree is converted and expressed as follow:

DMS = A+B+c = int(Deg)*10000 + int((Deg-int(Deg))*60)*100 + ((Deg-int(Deg))*60-int((Deg-int(Deg))*60))*60


*** Âü°í¹®Çå[References] ***

No reference
DMS = int(Deg)*10000 + int((Deg-int(Deg))*60)*100 + ((Deg-int(Deg))*60-int((Deg-int(Deg))*60))*60
ÀÛ¼ºÀÚÀÇ ¼ö½Ä±×¸²ÀÌ ¾ø½À´Ï´Ù. No picture for this formula
º¯¼ö¸í Variable º¯¼ö°ª Value º¯ ¼ö ¼³ ¸í Description of the variable


¡Ø ÀÌ »çÀÌÆ®´Â ±¤°í¼öÀÍÀ¸·Î ¿î¿µµË´Ï´Ù.

¡Ú ·Î±×ÀÎ ÈÄ ¼ö½ÄÀÛ¼º ¹× Áñ°Üã±â¿¡ Ãß°¡ÇÒ ¼ö ÀÖ½À´Ï´Ù.
¡Ú To make new formula or to add this formula in your bookmark, log on please.


ÄÚ¸àÆ®

´ñ±Û ÀÔ·Â