For Zoho services only


I'm currently part of a wider delivery team at Ascent Business Solutions, recognised as a leading Zoho Premium Solutions Partner in the United Kingdom.

Ascent Business Solutions support organisations with everything from targeted technical fixes through to full Zoho CRM implementations and long-term platform adoption. Working as a team rather than a one-person consultancy allows projects to move forward consistently, with access to the right skills at each stage.

The team I manage specialises in API integrations between Zoho and third-party finance and commerce platforms such as Xero, Shopify, WooCommerce, and eBay. Much of our work involves solving integration challenges that fall outside standard documentation, supporting new ideas, new sectors, and evolving business models.

Success is measured through practical outcomes and return on investment, ranging from scaling small operations into high-turnover businesses to delivering rapid gains through online payments, automation, and streamlined digital workflows.

If you are looking for structured Zoho expertise backed by an established consultancy, you can contact Ascent Business Solutions on 0121 392 8140 (UK), email info@ascentbusiness.co.uk, or visit https://www.ascentbusiness.co.uk.

Zoho Deluge - Get distance between two coordinates

What?
A quick article to document how to calculate the distance "as the crow files" between two coordinates given the latitude and longitude of each.

Why?
Well, you can pay for a good Google solution that will distance following roads and the such but.. the following is free albeit as-the-crow flies.

This makes use of an undocumented function in Zoho which is acos or inverse cosine. Just lifted from the JavaScript library figuring if it supports cos() then try this standard function. Note this has only been tested in Zoho Creator rather than Zoho CRM.

How?
This function returns the distance as the crow flies.
Update 2020
Not sure exactly when but Zoho have made available this function in Creator:
copyraw
<response> = zoho.map.distanceBetween(<source_address>, <destination_address>, <unit>);

// where unit can be "MILE", "KILOMETRE" or "NAUTICAL"
  1.  <response> = zoho.map.distanceBetween(<source_address>, <destination_address>, <unit>)
  2.   
  3.  // where unit can be "MILE", "KILOMETRE" or "NAUTICAL" 

Version 2019
copyraw
string fn_getMilesBetweenCoords(float p_Lat1, float p_Lng1, float p_Lat2, float p_Lng2)
{
	v_MathPi = 3.1415926535897932384626433832795028841971693993751;

	if ((p_Lat1 == p_Lat2) && (p_Lng1 == p_Lng2)) {
		return 0;
	}
	else
	{
		v_RadLat1 = v_MathPi * p_Lat1 / 180;
		v_RadLat2 = v_MathPi * p_Lat2 / 180;
		v_Theta = p_Lng1 - p_Lng2;
		v_RadTheta = v_MathPi * v_Theta / 180;
		v_Dist = (sin(v_RadLat1) * sin(v_RadLat2)) + (cos(v_RadLat1) * cos(v_RadLat2) * cos(v_RadTheta));
		if (v_Dist > 1) {
			v_Dist = 1;
		}
		v_AcosDist = acos(v_Dist);
		v_CalcDist = v_AcosDist * 180 / v_MathPi;
		v_Miles = v_CalcDist * 60 * 1.1515;
	}
	return round(v_Miles,2) + " miles";
}
  1.  string fn_getMilesBetweenCoords(float p_Lat1, float p_Lng1, float p_Lat2, float p_Lng2) 
  2.  { 
  3.      v_MathPi = 3.1415926535897932384626433832795028841971693993751
  4.   
  5.      if ((p_Lat1 == p_Lat2) && (p_Lng1 == p_Lng2)) { 
  6.          return 0
  7.      } 
  8.      else 
  9.      { 
  10.          v_RadLat1 = v_MathPi * p_Lat1 / 180
  11.          v_RadLat2 = v_MathPi * p_Lat2 / 180
  12.          v_Theta = p_Lng1 - p_Lng2; 
  13.          v_RadTheta = v_MathPi * v_Theta / 180
  14.          v_Dist = (sin(v_RadLat1) * sin(v_RadLat2)) + (cos(v_RadLat1) * cos(v_RadLat2) * cos(v_RadTheta))
  15.          if (v_Dist > 1) { 
  16.              v_Dist = 1
  17.          } 
  18.          v_AcosDist = acos(v_Dist)
  19.          v_CalcDist = v_AcosDist * 180 / v_MathPi; 
  20.          v_Miles = v_CalcDist * 60 * 1.1515
  21.      } 
  22.      return round(v_Miles,2) + " miles"
  23.  } 
For kilometres, simply multiply the miles value by 1.609344
copyraw
if (unit=="K") { dist = dist * 1.609344 }  // kilometers
if (unit=="N") { dist = dist * 0.8684 }  // nautical
  1.  if (unit=="K") { dist = dist * 1.609344 }  // kilometers 
  2.  if (unit=="N") { dist = dist * 0.8684 }  // nautical 

Production code
copyraw
// v_Latitude1, v_Longitude1 are coords for origin
// v_Latitude2, v_Longitude2 are coords for destination

v_Latitude1 = v_Latitude1.toDecimal();
v_Longitude1 = v_Longitude1.toDecimal();
v_Theta = v_Longitude2 - v_Longitude1;
v_Basecalc = 0.017453292519943295;
v_Coord1 = sin(v_Latitude2 * v_Basecalc) * sin(v_Latitude1 * v_Basecalc);
v_Coord2 = cos(v_Latitude2 * v_Basecalc) * cos(v_Latitude1 * v_Basecalc) * cos(v_Theta * v_Basecalc);
v_Dist = v_Coord1 + v_Coord2;
v_Dist = acos(v_Dist);
v_Dist = v_Dist * 180 / 3.1415926535897932384626433832795028841971693993751;
v_Miles = v_Dist * 60 * 1.1515;

// returns Miles as a float
  1.  // v_Latitude1, v_Longitude1 are coords for origin 
  2.  // v_Latitude2, v_Longitude2 are coords for destination 
  3.   
  4.  v_Latitude1 = v_Latitude1.toDecimal()
  5.  v_Longitude1 = v_Longitude1.toDecimal()
  6.  v_Theta = v_Longitude2 - v_Longitude1; 
  7.  v_Basecalc = 0.017453292519943295
  8.  v_Coord1 = sin(v_Latitude2 * v_Basecalc) * sin(v_Latitude1 * v_Basecalc)
  9.  v_Coord2 = cos(v_Latitude2 * v_Basecalc) * cos(v_Latitude1 * v_Basecalc) * cos(v_Theta * v_Basecalc)
  10.  v_Dist = v_Coord1 + v_Coord2; 
  11.  v_Dist = acos(v_Dist)
  12.  v_Dist = v_Dist * 180 / 3.1415926535897932384626433832795028841971693993751
  13.  v_Miles = v_Dist * 60 * 1.1515
  14.   
  15.  // returns Miles as a float 

Category: Zoho Deluge :: Article: 240

Accreditation

Badge - Zoho Creator Certified Developer Associate
Badge - Zoho Deluge Certified Developer
Badge - Certified Zoho CRM Developer

Donate & Support

If you like my content, and would like to support this sharing site, feel free to donate using a method below:

Paypal:
Donate to Joel Lipman via PayPal

Bitcoin:
Donate to Joel Lipman with Bitcoin bc1qf6elrdxc968h0k673l2djc9wrpazhqtxw8qqp4

Ethereum:
Donate to Joel Lipman with Ethereum 0xb038962F3809b425D661EF5D22294Cf45E02FebF

Credit where Credit is Due:


Feel free to copy, redistribute and share this information. All that we ask is that you attribute credit and possibly even a link back to this website as it really helps in our search engine rankings.

Disclaimer: Please note that the information provided on this website is intended for informational purposes only and does not represent a warranty. The opinions expressed are those of the author only. We recommend testing any solutions in a development environment before implementing them in production. The articles are based on our good faith efforts and were current at the time of writing, reflecting our practical experience in a commercial setting.

Thank you for visiting and, as always, we hope this website was of some use to you!

Kind Regards,

Joel Lipman
www.joellipman.com