Live chat Whatsapp
Live chat Whatsapp
Attiva Web - Realizzazione siti internet, ecommerce

Calculate the distance between two points in php

    • Today I carry a small funzioncina in php to calculate the distance between two points of latitude and longitude of the earth having two points.

      function distance(lat1, lon1, lat2, lon2, unit) {
      	var radlat1 = Math.PI * lat1/180
      	var radlat2 = Math.PI * lat2/180
      	var radlon1 = Math.PI * lon1/180
      	var radlon2 = Math.PI * lon2/180
      	var theta = lon1-lon2
      	var radtheta = Math.PI * theta/180
      	var dist = Math.sin(radlat1) * Math.sin(radlat2) + Math.cos(radlat1) * Math.cos(radlat2) * Math.cos(radtheta);
      	dist = Math.acos(dist)
      	dist = dist * 180/Math.PI
      	dist = dist * 60 * 1.1515
      	if (unit=="K") { dist = dist * 1.609344 }
      	if (unit=="N") { dist = dist * 0.8684 }
      	return dist
      }
      Francesco // 10-12-2021 // PHP

    Lascia un commento

    Invia commento


    ATTENZIONE: il tuo commento verrà prima moderato e se ritenuto idoneo sarà pubblicato