Calculating Distance (in degrees) with Latitude

Sdílet
Vložit
  • čas přidán 13. 10. 2015
  • In this tutorial, Jennifer shows how you can use a location's latitude to determine how far north or south the location is from another location, measured in degrees of latitude. The same process can be used to calculate how far east or west a location is from another using longitude. One important reminder that is shown is how many minutes are in one degree of distance on a circle.
    Note 1: When measuring distance on a sphere, the unit of measurement is in degrees (shown in this video calculation).
    Note 2: Because the Earth is not a perfect circle, the distance represented by 1 degree changes depending where you are on the globe. If you are looking to convert the degrees measured to another unit, you will need to figure out if you are looking at a distance between latitude or longitude before converting them. Please consider this site as a starting point: www.usgs.gov/faqs/how-much-di...

Komentáře • 239

  • @-Fritz-
    @-Fritz- Před 5 lety +58

    ......To continue on with the actual distance.
    We convert the 3° 37' to decimal degrees. With 60 minutes per degree we divide 37 by 60 (disregarding the 3° and working with the minutes only). _37/60 = 0.616_
    Decimal degrees = 3.616 (tacking on the .616 to the original 3° that we disregarded earlier)
    There are 69 miles or 111km per degree of latitude
    So the distance is 3.616 * 69 = 249.504 miles, or 401.376 km (North to South only)
    Since both locations are on a different longitude line the distance is further than that and things get a lot more complicated.
    You'll need the Haversine formula to determine the exact distance.

    • @ricardojuricic9027
      @ricardojuricic9027 Před 4 lety

      Hi Fritz, I followed yoyr explination. True!
      Appreciate if you could explain to me the Haversine formula.
      Cheers

    • @-Fritz-
      @-Fritz- Před 4 lety +5

      @@ricardojuricic9027 Hi Ricardo, Sorry I didn't get the notification for your comment. 😒
      The Haversine formula uses Radians instead of degrees, and calculates the distance by using the centre of the globe as its reference point instead of the surface of the globe like above.
      In Excel, the formula looks like this:
      =ACOS(COS(RADIANS(90-LAT1)) *COS(RADIANS(90-LAT2)) +SIN(RADIANS(90-LAT1)) *SIN(RADIANS(90-LON1)) *COS(RADIANS(LON1-LON2))) *6371
      So certainly something you couldn't do in your head, or even just on a standard calculator for that matter.
      The LAT1, LAT2, LON1, LON2 are the coordinates in decimal degrees and the 6371 at the end of the formula is the earths radius in kilometres. _(change to 3958.75 for miles, or 14158 for Toyota Corollas 🤣 )_
      And just out of boredom, I created a Google spreadsheet that calculates the distances between two lat/lon coordinates and gives the result in kilometres, metres, miles and feet for all of the planets, including the sun.
      It also converts Degrees, Minutes and seconds to decimal degrees and Decimal degrees back to Degrees, minutes and seconds. _(approximately)_
      Hopefully the link and public sharing works:
      docs.google.com/spreadsheets/d/144G5yiZfW5JfgBSqMDWpfjutTZO8zNVauVDWwjvcHCk/edit#gid=0
      @Manjeet Reply to you is in the works, my dog is hassling me for attention at the moment.

    • @-Fritz-
      @-Fritz- Před 4 lety +3

      @manjeet singh I don't know of any "official" way of working that one out, but just off the top of my head, I'd do it this way:
      Assuming you're at 45° Latitude and you want to calculate the distance between 0° longitude and 27° longitude. So the difference is 27°.
      First you would need to calculate the radius of the earth at 45° latitude:
      Start with the radius of the earth at the equator (6371 km) and multiply that by the Cosine of 45
      6371 x Cos(45) = 3346.8 km _(This is the radius of the earth at latitude 45°)_
      Then calculate the circumference of the earth using the radius at latitude 45°
      2 x 3.1415 _(PI)_ x 3346.8 = 21028.5 km
      Then divide the circumference by 360° _(This should give you kilometres per degree)_
      21028.5 / 360 = 58.4 km per degree
      Then multiply that by your original 27° difference
      58.4 x 27 = 1576.8 kilometres
      _It's approximate, but close enough for this exercise)_

    • @-Fritz-
      @-Fritz- Před 4 lety

      @manjeet singh Yes, 1° between longitudes = 58km, but only at latitude 45°
      If you're at latitude 37° for example, you would have to change all the 45's to 37 to get the correct radius for a different distance since the longitude lines converge at the poles.

    • @hrishikeshb
      @hrishikeshb Před 3 lety

      This was helpful! thanks!

  • @welis18421
    @welis18421 Před 5 lety +1

    It took you three minutes (time minutes) to explain how to subtract one measurement of latitude from another? WOW. I'm glad I had an English education and did the calculation in my head.

  • @Avensur
    @Avensur Před 4 lety +1

    Hi, never thought about using that simple calculation. Very interesting Jen.

  • @lonrorow7571
    @lonrorow7571 Před rokem

    Really nice, concise, understandable information and presentation - thank you so much

  • @hmabboud
    @hmabboud Před rokem +1

    Finally! Someone could explain this properly. I thank you :)

  • @April-rj8lf
    @April-rj8lf Před 4 lety +5

    All I need to know if its towards my goal in life, or not.
    Nothing else matters.
    I have forever.

  • @rajatuppal7408
    @rajatuppal7408 Před 7 lety +2

    Hello Jennifer Lewis, Could you tell me how to calculate arrival position? Means if initial latitude and Difference of latitude is given then how to calculate arrival latitude?

  • @alcatrazeleochestra4146
    @alcatrazeleochestra4146 Před 4 lety +1

    Good job, and very nice tutorial. thanks for sharing.

  • @FRIENDSofCAP
    @FRIENDSofCAP Před 3 lety +1

    Hello Jennifer... Great presentation by the way! I wanted some additional information however. I have in the past, using pre-written code snippets, done this for Google Earth projects. But, I want to know how to do the following using math alone in my Python program so that I can input two sets of LAT/LON points (point A to Point B) and from those two LAT/LON inputs, I can obtain two results. First, the bearing in degrees from point A to point B and the distance between the two points. Additionally is there a way to calculate both this in terms of either (T),True North or (M), Magnetic North results??? Thanks and look forward to your reply... Also, will the distance be in meters or feet / statue miles etc?? Thanks

  • @sunilwijeratne1620
    @sunilwijeratne1620 Před 3 lety +1

    Thanks, You took me to my olden days in school.

  • @vickikay54
    @vickikay54 Před 2 lety

    Exactly the information I was looking for.

  • @websterjhonzmifa6114
    @websterjhonzmifa6114 Před 4 lety +1

    I would like to ask so they also know why you need to subtract the latitude? How about adding the latitude? What are the sign to use +/-

  • @Av-livePk
    @Av-livePk Před 7 lety +1

    This is very helpful and brief..

  • @SHIVANISONI
    @SHIVANISONI Před 4 lety

    Explained very well thank you mam.😊🙏🙏🙏🙏 this video very helpful for us.

  • @dashti.behrouz
    @dashti.behrouz Před 4 lety

    What is the length of a 3º increment along
    on a meridian and on a parallel at 30S, 90E ?

  • @UniiversalWiisdom
    @UniiversalWiisdom Před 5 lety

    Excellent explanation - Thanks Buddy

  • @watiqbasha6695
    @watiqbasha6695 Před 3 lety

    Thank you very much for sharing.

  • @emerlander
    @emerlander Před 7 lety

    Very useful. Thanks!

  • @hrishikeshb
    @hrishikeshb Před 3 lety

    Very helpful! Thank you!

  • @threefruits8971
    @threefruits8971 Před 7 lety

    Thank you very much, really helped

  • @snehawilson1012
    @snehawilson1012 Před 4 měsíci

    Thank you for making this as simple as this😊

  • @kayodedorcas559
    @kayodedorcas559 Před rokem +1

    Great presentation

  • @harshitsingh4791
    @harshitsingh4791 Před 3 lety +1

    If you were our teacher ..
    Attendance 100%

  • @frankhilber9076
    @frankhilber9076 Před 6 lety

    first time i am really able to understand the calculation thanks for sharing, great job

  • @kahanijag970
    @kahanijag970 Před 3 lety

    Thank you so much mam lots of love from India🇮🇳

  • @ranveersingh9364
    @ranveersingh9364 Před 2 lety

    all doubts cleared . thank you so much mam . youre awesomeee!!!!

  • @deshrajpandey6940
    @deshrajpandey6940 Před 5 lety

    Awesome.... 1°=60`, 1'= 60"
    And 1° latitude is approx 69 miles that is 111 km..
    Thanks for explaining it in simple method

  • @Landlord1158
    @Landlord1158 Před 3 lety +1

    Hi madam how many different between when we calculate latitude on sea and same on earth by north star.

  • @zohaibhassan3270
    @zohaibhassan3270 Před rokem

    This is the simplest and most understandable way. Thanks. Can You Please help me out in calculating distance between decimal lat lon coordinates

  • @noshinamjadyan5121
    @noshinamjadyan5121 Před 4 lety

    Hello,how we can calculate distance in km or meter from degree and minute?

  • @reembouma6030
    @reembouma6030 Před 7 lety +8

    Thank u but how to find distance between two points with longitude and latitude for example 62n 020w and 58n 004E

  • @dharamdas356
    @dharamdas356 Před rokem

    Thank you Ma'am. Please make one more video on how to calculate distance between tow longitudes at different latitudes.

  • @HP-pn8jr
    @HP-pn8jr Před 5 lety

    How to calculate latitude longitude sums like moving 23 degree xx minutes East from 100 degree yy minutes W.?

  • @User74770
    @User74770 Před 4 lety +2

    Hii mam
    Love from india🇮🇳

  • @user-uo8nf2qq8r
    @user-uo8nf2qq8r Před 7 měsíci

    Thank you sooooo muchhhhhhhh❤ .you have solvedmy biggest problem.

  • @boblynch2802
    @boblynch2802 Před rokem

    I think this calculation can be taken one step further. I believe one degree minute is equal to 1.15 miles. so if you convert your final answer to minutes and multiply by 1.15 you can get an estimate of distance in miles. Of a course the further you are left or right in terms of longitude you and to do some more math.

  • @toby_s3822
    @toby_s3822 Před 5 lety +1

    at the end point of this video you get the 337 but how do i then make this into xyz(nms)? pls help

  • @xandergreeves1984
    @xandergreeves1984 Před 5 lety

    Thanks very much for this

  • @maliksurveyacademy8787

    Good lesson mam... little elaborate more on latitude longitude subject

  • @bradycannon4573
    @bradycannon4573 Před 3 lety

    Can you help me? We need the exact coordinates 3 miles and 6 miles out: north, south, northeast, northwest, southeast, and southwest away from 2720 wrondel way Reno nv as the center point

  • @Bambon794
    @Bambon794 Před 7 lety

    so what is the distance between the two cities in miles or kilometre?

  • @AviaTAH
    @AviaTAH Před 5 lety

    Very helpful. Thanks

  • @nft-tesla
    @nft-tesla Před 2 lety

    Dear Ms.
    If I have my own Lat & Long, how can I find the South and East Lat & Long 1km from mine?
    Thanks.

  • @rajandangi
    @rajandangi Před 5 lety

    Please make a video on Vincenty's formulae

  • @joslinjijy398
    @joslinjijy398 Před 5 lety

    if suppose going from north to south how to convert thn ??

  • @ahira302
    @ahira302 Před 4 lety

    Thank you🙏💕 guru ji

  • @theaviator8408
    @theaviator8408 Před 3 lety

    So if 1 degree is 60mins on the latitude what about longitude does the same principle apply there as wlel

  • @sheharafernando3857
    @sheharafernando3857 Před 5 lety +1

    thank you so much...can you add more questions cause it will very helpful for university students like us...

  • @Induskapas
    @Induskapas Před 4 lety

    Teach us to calculate exact time difference from two longitudinal point too please...

  • @dalxiistravel5666
    @dalxiistravel5666 Před 6 lety

    thanks for sharing

  • @kerwinuy5722
    @kerwinuy5722 Před 5 lety

    Hello ....i have a question? What is the different of lattitude if the vessel departed in lat. 10040'N and arrived 10040' ?

  • @Landlord1158
    @Landlord1158 Před 4 lety

    Please explain how calculate angle of moon with our latitude.

  • @keith-pascalbashizi3363
    @keith-pascalbashizi3363 Před 9 měsíci

    You are flying from A (30S 20E) to B (30S 20W). What is the initial GC track ?

  • @msjswapnil
    @msjswapnil Před 7 lety +2

    Thanks for the video....................................... & THUMBS UP :D

  • @ricardojuricic9027
    @ricardojuricic9027 Před 4 lety +1

    hmmmm ... I'd say you're half way through.
    Are at the same longitute?
    And then would have to turn that figure into distance ....
    Thanks

  • @nj4879
    @nj4879 Před 6 lety

    can u plz make a time zone video for gr6

  • @accordingtoislam1371
    @accordingtoislam1371 Před 5 lety +2

    Mam you are very great but can you solve more problems because I want to understand the whole concept 😍

  • @robinsonrodriquez3447
    @robinsonrodriquez3447 Před 2 lety

    What happens to the length of a degree as one nears the North and South?

  • @djalitanaful
    @djalitanaful Před 5 lety +1

    this was really useful. thank you very much. how do we find distance between them in miles? do we divide the degree we just found by 180 and multiply by pie? I was watching another video about distance but would be good to add that here. thank you

    • @tariqabbas9299
      @tariqabbas9299 Před 2 lety +1

      Sister, I could not understand. What did she teach me

    • @MarcLombart
      @MarcLombart Před 2 lety

      No, take the degree and multiply by 60, that's the nautical miles distance.

    • @nats50
      @nats50 Před rokem

      It says 3 degrees, 37 minutes. Now, 1 degree = 60 minutes, so 3 degrees = 180 minutes. Now, add the 180 and 37 to equal 217 minutes. But, 1 minute = 1 nautical mile. So, 217 minutes is 217 nautical miles, not your statute miles you're probably more familiar with. Now, 1 nautical mile = 1.1508 statute mile. That means 217 x 1.1508 = 249.72 statute miles, about 250 regular miles.

  • @JamesSkywalker1990
    @JamesSkywalker1990 Před 6 lety

    So how do we deal with the distance if they have the same latitude but for the longitude that are located in two different hemisphere. I have one which is 30 N 90W, while the other coordinate is 30 N 120 W

    • @ricardojuricic9027
      @ricardojuricic9027 Před 4 lety

      Hi Asuka
      As 1 nautical mile is equal to 1 minute, and it's 60 minutes to 1 degree (1°).
      Between 30N90W to 30N120W
      120-90 = got 30° difference
      1' = 1nm
      1° = 60' = 60nm
      30° x 60nm = 120nm difference
      to know it in km
      1nm = 1.852km
      120nm x 1.852km = 222.24km (that is 222km 240mts)

  • @irenegarrislikeharrisbutwi3595

    Thanks!

  • @sislam2306
    @sislam2306 Před 5 lety

    Thank you mam .....!!!!

  • @ebrahimmadraswala6079
    @ebrahimmadraswala6079 Před 2 lety

    Thanks a lot!!!

  • @mortymcfly3188
    @mortymcfly3188 Před 2 lety

    thank you very helpful

  • @zengirl43
    @zengirl43 Před 4 lety

    But what does that 3 degrees, 37 minutes mean? Is that 3hours and 37 min? How do you find or can you find the miles between the two latitudes? If I wanted to know what city was 50 miles from San Fran, how would I figure that?

  • @nokuphilapeasley1677
    @nokuphilapeasley1677 Před 2 lety

    Please can you do this one calculate the difference in latitude between Mahikeng and Mthatha

  • @edgarxavier493
    @edgarxavier493 Před 4 lety

    Also to note that 1min of latitude is 1 Nautical mile. So 3 degrees and 37 mins is a total of 217 minutes. so 217*1.85km = 401.5km.

  • @dharamsinghmeena8504
    @dharamsinghmeena8504 Před 3 lety

    Could you please also explain why the linear distance of one degree of latitudinal variation is higher at the poles than at the equator?

  • @muhammadhuzefa7827
    @muhammadhuzefa7827 Před 7 lety

    What is Rhumb lline?

  • @ossiespencer4982
    @ossiespencer4982 Před 6 lety

    Thanks.

  • @aquibmohd
    @aquibmohd Před 4 lety

    How much distance in meters using the latitude

  • @quarantimo3708
    @quarantimo3708 Před 2 lety

    Thank you

  • @ashokchandra4911
    @ashokchandra4911 Před rokem

    Super explanation

  • @syedwajahatpervez5789
    @syedwajahatpervez5789 Před 7 lety +4

    Thanks, What if we have two point (each having Lat and long) and we want to know the distance between them in Km?

    • @tubedude54
      @tubedude54 Před 7 lety +4

      It's really not that hard...
      Haversine formula: Where
      a = sin²(Δφ/2) + cos φ1 ⋅ cos φ2 ⋅ sin²(Δλ/2)
      c = 2 ⋅ atan2( √a, √(1−a) )
      d = R ⋅ c
      φ is latitude, λ is longitude, R is earth’s radius (mean radius = 6,371km);
      note that angles need to be in radians to pass to trig functions!
      or just go here ... www8.nau.edu/cvm/latlongdist.html

    • @JohnMotamed
      @JohnMotamed Před 7 lety

      yes , but the title of this video seems to be about proving Hervesine formula or at least giving some clues about the proof.

    • @AndrewGulickTrueVitalityPlus
      @AndrewGulickTrueVitalityPlus Před 6 lety

      +tubedude54:
      Do you have a program that can type the math symbols and if so, what is it called? Where do you get it? ... probably expensive huh?

    • @siaripop7
      @siaripop7 Před 5 lety

      To tell you the truth you don't really need to compute for the radius of the earth unless you are going a very long distance. Even then, you could use simple geometry and add 10% or ? to the results. That would place you pretty close to a final destination unless you're expecting meeting someone at a specific time and place.

    • @atakangoncu8063
      @atakangoncu8063 Před 5 lety

      1 nm = 1852 m.. so when you calculated in nm you can convert to km when you count to time them ..

  • @piyaghosh2760
    @piyaghosh2760 Před 7 lety +1

    can you tell me how to find longitude of that place when it is 6am at Greenwich and it is noon at that place

    • @Dhruv28726
      @Dhruv28726 Před 6 lety

      Piya Ghosh very good question?? Kindly someone answer it

    • @Paddington60
      @Paddington60 Před 5 lety +3

      Sun moves 15 deg per hour. 360/24=15. Your place is 90 deg East of Greenwich, 15 x 6=90

    • @ZackWolfMusic
      @ZackWolfMusic Před 4 lety +2

      @@Paddington60 Earth is FLAT.

  • @ashrafalimir5884
    @ashrafalimir5884 Před 2 lety

    very informative but how can we calculate latitudinal and longitudinal distance any idea mam....

  • @pranjalivitonde6194
    @pranjalivitonde6194 Před rokem

    Thank you sooo much mam 🙏☺

  • @Amandadiana22
    @Amandadiana22 Před rokem

    How do you convert degrees n minutes into miles?

  • @HP-pn8jr
    @HP-pn8jr Před 5 lety

    Thank you :)

  • @maniwalrohit601
    @maniwalrohit601 Před 7 lety

    how to calculate distance between source(lat,long) destination(lat,long) in km or miles ...?

    • @damiann4734
      @damiann4734 Před 4 lety

      You need to use haversine great circle distance formular.

  • @saqibmunir4713
    @saqibmunir4713 Před 4 lety

    Thanks teacher

  • @onestopthegadgetstore6499

    THANKU SO MUCH

  • @goldensleeves
    @goldensleeves Před 3 lety

    Why are the locations measured in time (like minutes etc)? Is that how long it would take the earth to spin to that place? I don't get it. Why? Thanks

  • @maesjanjaap
    @maesjanjaap Před 6 lety +1

    Dear Syed wajahat
    for distances until 600 nautical miles you can use the technique of middle latitude , +600 ' you must use mercator technique or great circle navigation
    If other people want me to explain this, then just comment and I will make a video about the topics of interest. Greetings, Jan Jaap MAES

    • @ricardojuricic9027
      @ricardojuricic9027 Před 4 lety

      Hi Jan, please do so and then bring the link to cross over.
      Thanks tons
      Cheers

  • @youssefel-7adad258
    @youssefel-7adad258 Před 5 lety +1

    Calculate distance
    between Latitude/Longitude points

  • @frisbeeking7002
    @frisbeeking7002 Před 3 lety

    I can't make a distance of this yet. :D something must be done to explain the use of such info :D

  • @chrismaggio7879
    @chrismaggio7879 Před 2 lety

    Yes, but since we know Earth is flat we can just make a grid pattern and use numbers and letters to find the location. (yes, I'm kidding... haha just wanted to stir up the nerds.) This was a good, and simple, explanation. Thanks Jenn.

  • @STARBOY_2_4_1
    @STARBOY_2_4_1 Před 3 lety

    🤯 thank you

  • @thalesnemo2841
    @thalesnemo2841 Před 5 lety +1

    This video did not get to actual conversion .
    Use 1degree of latitude = 111 km
    And for longitude distance use the cos( mean latitude )* 111 km to determine actual distances.
    So the difference in just latitude is
    3.616 *111km/deg=
    401.45 km

  • @michaelboguslawski9490

    Jenny thanks you super

  • @rishabhkalyani604
    @rishabhkalyani604 Před 2 lety

    ok so , how we gonna calculate the distance difference like how much in meters?

  • @patricminderhout
    @patricminderhout Před rokem

    Good teacher

  • @vinodsingh-ek1ey
    @vinodsingh-ek1ey Před 4 lety

    Thanks

  • @dmeneghin
    @dmeneghin Před 3 lety +1

    What about calculating difference between two places with different latitude AND longitude?

  • @dysfunctional_vet
    @dysfunctional_vet Před 2 lety

    while your explanation is good, i was expecting you to use departure
    i remember learning to navigate in high school and having to learn by rote the distance decline of long as you reach the poles and how knowing this made error checking quicker....i made a lot of errorrs when i was learning and could never fix a sun sight closer than 3 NM E/W of my longitude
    good job

  • @kartikrawat2029
    @kartikrawat2029 Před 6 lety

    Good video

  • @prasadsanap1431
    @prasadsanap1431 Před 7 lety

    hey that is really nice.can you please tell how much distance that is.and please upload the video on counting the time difference between two places.thank you

  • @Cat_in_Spacetime
    @Cat_in_Spacetime Před 3 lety +1

    How to calculate circumference (in miles) of a given latitude?

    • @softjet6293
      @softjet6293 Před 2 lety

      20,906,000’ mean radius earth.
      Diameter times pi.
      Divide by 360, divided by 5280..
      That gives you miles per degree.
      Divided by 6080 if you want nautical miles

  • @alphabravo5266
    @alphabravo5266 Před 2 lety

    how much mile is in 1 degree lat

  • @amarishsingh1586
    @amarishsingh1586 Před 3 lety

    What we will put North Or South in direction.... Please reply to my question... From 🇮🇳 🙏🙏🙏🙏