-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgpx_tools.py
102 lines (82 loc) · 3.47 KB
/
gpx_tools.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import branca.colormap as cm
import matplotlib
import polyline
import folium
import math
import gpxpy
import gpxpy.gpx
import numpy as np
from weather_tools import get_weather
def get_position(gpx,i):
start_point = gpx.tracks[0].segments[0].points[i]
return start_point.latitude, start_point.longitude, str(start_point.time.date()), int(start_point.time.time().hour)
# gpx_file = open('/Users/matthewcoudert/Downloads/activity_5852303688.gpx', 'r')
#gpx = gpxpy.parse(gpx_file)
#lat, lon, date, hour = get_start_position(gpx_file)
def get_ratio(lat_lon, wind_direc):
if(len(lat_lon) <= 1):
return []
i = 1
ratio = []
while(True):
first = lat_lon[i-1]
second = lat_lon[i]
y = math.sin(first[1]-second[1]) * math.cos(second[0])
x = math.cos(first[0])*math.sin(second[0]) - math.sin(first[0])*math.cos(second[0])*math.cos(first[1]-second[1])
r = math.atan2(y, x)
deg = (r*180/math.pi + 360) % 360
diff = wind_direc - deg
ratio.append(abs(diff))
i += 1
if(i == len(lat_lon)):
return ratio
# OPTION 2
def add_to_map(lat_lon, ratio, world_map):
minima = min(ratio)
maxima = max(ratio)
test = cm.LinearColormap(['red','blue'], vmin=minima, vmax=maxima)
colorline = folium.ColorLine(lat_lon, ratio, colormap = test, nb_steps=len(lat_lon), weight = 4, opacity=1)
world_map.add_child(colorline)
def get_lat_lon(gpx):
for track in gpx.tracks:
for segment in track.segments:
lat_lon = [(point.latitude, point.longitude) for point in segment.points]
times = [point.time.time().hour for point in segment.points]
return lat_lon, times
def get_switch_indices(times):
indices = [0]
for i in range(0,len(times)-1):
if(times[i]<times[i+1]):
indices.append(i+1)
return indices
def generate_map(gpx_file):
world_map = folium.Map()
gpx = gpxpy.parse(gpx_file)
lat_lon, times = get_lat_lon(gpx)
switch_indices = get_switch_indices(times)
for i in range(0,len(switch_indices)-1):
lat, lon, date, hour = get_position(gpx,switch_indices[i])
weather = get_weather(lat,lon,date,hour)
wind_direction = weather['wind_direction']
ratio = get_ratio(lat_lon[switch_indices[i]:switch_indices[i+1]], wind_direction)
add_to_map(lat_lon[switch_indices[i]:switch_indices[i+1]], ratio, world_map)
folium.Marker(
location=[lat, lon],
popup="hour: " + str(hour)+"direction: " + str(wind_direction) + "speed: " + str(weather['wind_speed']),
icon=folium.Icon(icon="wind", prefix = 'fas'),
).add_to(world_map)
lat, lon, date, hour = get_position(gpx,switch_indices[-1])
weather = get_weather(lat,lon,date,hour)
wind_direction = weather['wind_direction']
ratio = get_ratio(lat_lon[switch_indices[-1]:], wind_direction)
add_to_map(lat_lon[switch_indices[-1]:], ratio, world_map)
folium.Marker(
location=[lat, lon],
popup="hour: " + str(hour)+"direction: " + str(wind_direction) + "speed: " + str(weather['wind_speed']),
icon=folium.Icon(icon="wind", prefix = "fas"),
).add_to(world_map)
world_map.fit_bounds(world_map.get_bounds())
# world_map.save('/Users/matthewcoudert/Maths/#Headwind/#Headwind/maps/mymap.html')
return world_map._repr_html_()