|
|
|
SSC Veteran
      
Group: General Forum Members
Last Login: Tuesday, April 19, 2011 5:10 PM
Points: 275,
Visits: 168
|
|
|
|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Monday, June 09, 2008 1:48 PM
Points: 1,
Visits: 4
|
|
Thanks alot for the clean and good function!! Kind regards, Wim
|
|
|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Wednesday, October 22, 2008 1:37 PM
Points: 1,
Visits: 4
|
|
There is one issue in the CalcDistanceBetweenGeoLocations function. Sometime you will get an error, "A domain error occurred.", by passing in some specific parameters.
So I added the following Code: --reset @Distance if it is out of the range of (-1,1) If @Distance>1 set @Distance=1 If @Distance<-1 set @Distance=-1 before --Get distance in miles SET @Distance = (DEGREES(ACOS(@Distance))) * 69.09
Because ACOS can be only with a value from -1 through 1.
|
|
|
|
|
SSC Veteran
      
Group: General Forum Members
Last Login: Tuesday, April 19, 2011 5:10 PM
Points: 275,
Visits: 168
|
|
jgao,
Thanks for pointing that out.
Karen Gayda MCP, MCSD, MCDBA
gaydaware.com
|
|
|
|