Calculate the approximate distance in miles: sqrt(x * x + y * y) using latitude and longitude values in degrees for example x = 69.1 * (lat2 - lat1) and y = 53.0 * (lon2 - lon1).
Add the cosine: where x = 69.1 * (lat2 - lat1) and y = 69.1 * (lon2 - lon1) * cos(lat1/57.3); this will increase the accuracy of the measurement.
Use the great circle distance formula to get further accuracy. To do this you will need to use spherical geometry and about 15 digits of floating point mathematical accuracy, also known as double-precision, and will have to use a software application to do the calculation. For this formula you will need to convert the latitude and longitude values from decimals to radians. You can do this by dividing the latitude and longitude values by 180/pi or approximately 57.29577951. The radius of the Earth is assumed to be 3,963 miles.