-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdistAndAngle.py
68 lines (53 loc) · 2.19 KB
/
distAndAngle.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
import math
import mpu
brng = 1.57079632679 #Bearing is 90 degrees converted to radians.
d = 15 #Distance in km
def distanceAndAngle(latitude, longitude, angulo, distance):
R = 6378.137 #Radius of the Earth WSG-84
d=distance #Distance in km
brng = math.radians(angulo)
lat1 = math.radians(latitude) #Current lat point converted to radians
lon1 = math.radians(longitude) #Current long point converted to radians
lat2 = math.asin( math.sin(lat1)*math.cos(d/R) +
math.cos(lat1)*math.sin(d/R)*math.cos(brng))
lon2 = lon1 + math.atan2(math.sin(brng)*math.sin(d/R)*math.cos(lat1),
math.cos(d/R)-math.sin(lat1)*math.sin(lat2))
lat2 = math.degrees(lat2)
lon2 = math.degrees(lon2)
#print(lat2)
#print(lon2)
return lat2, lon2
def distance2points(lat1,lon1,lat2,lon2):
dist=(mpu.haversine_distance((lat1, lon1), (lat2, lon2)))
return dist
def distanceAndAngleInterpolation(latitude, longitude, angulo, distance, heat):
R = 6378.137 #Radius of the Earth WSG-84
heat=heat/100
if (heat>1):
heat=1
diferencia=1-heat
lista=[]
particion=5
#print("###CONTROL HEAT###: ", heat)
for i in range(particion+1):
d=i*distance/(particion) #Distance in km
heatInterpo=1-(diferencia*i/(particion))
if (heatInterpo==0):
heatInterpo=0.001
#print("HEAT INTERPOLATION: ",heatInterpo)
brng = math.radians(angulo)
lat1 = math.radians(latitude) #Current lat point converted to radians
lon1 = math.radians(longitude) #Current long point converted to radians
lat2 = math.asin( math.sin(lat1)*math.cos(d/R) +
math.cos(lat1)*math.sin(d/R)*math.cos(brng))
lon2 = lon1 + math.atan2(math.sin(brng)*math.sin(d/R)*math.cos(lat1),
math.cos(d/R)-math.sin(lat1)*math.sin(lat2))
lat2 = math.degrees(lat2)
lon2 = math.degrees(lon2)
lista.append([lat2, lon2, heatInterpo])
#print(lat2)
#print(lon2)
return lista
#print("New Coord: ", distanceAndAngle(10,-66,10,15))
#print("distance(km): ",distance2points(10,-66,10.132699331976822,-65.97623066728403))
##it gets 14,98 km back