Mysql
 sql >> डेटाबेस >  >> RDS >> Mysql

MySQL फ़ंक्शन दो अक्षांश और देशांतर के बीच की दूरी की गणना करने के लिए

कुछ देर इधर-उधर खोजने के बाद, मैंने हार मान ली और इसे खुद लिखा। मैं कुछ अन्य कोड को निम्नलिखित MySQL फ़ंक्शन में अनुकूलित करने में सक्षम था।

DELIMITER $$
/*
Takes two latitudes and longitudes in degrees. You could comment out the conversion if you want to pass as radians.
Calculate the distance in miles, change the radius to the earth's radius in km to get km.
*/

DROP FUNCTION IF EXISTS GETDISTANCE$$
CREATE FUNCTION GETDISTANCE 
  (deg_lat1 FLOAT, deg_lng1 FLOAT, deg_lat2 FLOAT, deg_lng2 FLOAT) 
  RETURNS FLOAT 
  DETERMINISTIC 
BEGIN 
  DECLARE distance FLOAT;
  DECLARE delta_lat FLOAT; 
  DECLARE delta_lng FLOAT; 
  DECLARE lat1 FLOAT; 
  DECLARE lat2 FLOAT;
  DECLARE a FLOAT;

  SET distance = 0;

  /*Convert degrees to radians and get the variables I need.*/
  SET delta_lat = radians(deg_lat2 - deg_lat1); 
  SET delta_lng = radians(deg_lng2 - deg_lng1); 
  SET lat1 = radians(deg_lat1); 
  SET lat2 = radians(deg_lat2); 

  /*Formula found here: http://www.movable-type.co.uk/scripts/latlong.html*/
  SET a = sin(delta_lat/2.0) * sin(delta_lat/2.0) + sin(delta_lng/2.0) * sin(delta_lng/2.0) * cos(lat1) * cos(lat2); 
  SET distance = 3956.6 * 2 * atan2(sqrt(a),  sqrt(1-a)); 

  RETURN distance;
END$$
DELIMITER ;



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. लूपिंग के बिना PHP और MySQL के साथ स्कोर तालिका से किसी की 'रैंक' कैसे प्राप्त करें?

  2. MySQL में एक सबस्ट्रिंग कैसे निकालें

  3. Utf8_unicode_ci Mysql टेबल से टेक्स्ट प्रिंट करते समय खराब वर्ण

  4. एक्लिप्स ऑब्जेक्ट को डेटाटाइप टेक्स्ट के लिए डिफ़ॉल्ट मैपिंग प्रकार के रूप में क्यों प्रस्तावित करता है?

  5. संबंधपरक डेटाबेस में 1:1 उपयोगकर्ता संबंधों को संग्रहीत करने का सर्वोत्तम तरीका