geo-activity-playground 1.0.0__py3-none-any.whl → 1.2.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- geo_activity_playground/alembic/versions/dc8073871da7_add_plotspec_group_by.py +28 -0
- geo_activity_playground/core/config.py +1 -0
- geo_activity_playground/core/datamodel.py +41 -3
- geo_activity_playground/core/parametric_plot.py +101 -47
- geo_activity_playground/webui/app.py +7 -0
- geo_activity_playground/webui/blueprints/activity_blueprint.py +11 -10
- geo_activity_playground/webui/blueprints/auth_blueprint.py +3 -2
- geo_activity_playground/webui/blueprints/bubble_chart_blueprint.py +2 -1
- geo_activity_playground/webui/blueprints/calendar_blueprint.py +3 -2
- geo_activity_playground/webui/blueprints/eddington_blueprints.py +3 -2
- geo_activity_playground/webui/blueprints/entry_views.py +11 -11
- geo_activity_playground/webui/blueprints/equipment_blueprint.py +2 -1
- geo_activity_playground/webui/blueprints/explorer_blueprint.py +47 -13
- geo_activity_playground/webui/blueprints/export_blueprint.py +3 -2
- geo_activity_playground/webui/blueprints/hall_of_fame_blueprint.py +79 -0
- geo_activity_playground/webui/blueprints/photo_blueprint.py +65 -56
- geo_activity_playground/webui/blueprints/plot_builder_blueprint.py +38 -19
- geo_activity_playground/webui/blueprints/settings_blueprint.py +17 -0
- geo_activity_playground/webui/blueprints/summary_blueprint.py +114 -240
- geo_activity_playground/webui/columns.py +40 -7
- geo_activity_playground/webui/static/{browserconfig.xml → favicons/browserconfig.xml} +1 -1
- geo_activity_playground/webui/static/{site.webmanifest → favicons/site.webmanifest} +2 -2
- geo_activity_playground/webui/static/server-side-explorer.js +7 -2
- geo_activity_playground/webui/templates/activity/name.html.j2 +4 -4
- geo_activity_playground/webui/templates/activity/show.html.j2 +8 -8
- geo_activity_playground/webui/templates/eddington/distance.html.j2 +3 -3
- geo_activity_playground/webui/templates/eddington/elevation_gain.html.j2 +3 -3
- geo_activity_playground/webui/templates/elevation_eddington/index.html.j2 +3 -3
- geo_activity_playground/webui/templates/equipment/index.html.j2 +4 -4
- geo_activity_playground/webui/templates/explorer/server-side.html.j2 +5 -4
- geo_activity_playground/webui/templates/hall_of_fame/index.html.j2 +57 -0
- geo_activity_playground/webui/templates/home.html.j2 +2 -12
- geo_activity_playground/webui/templates/page.html.j2 +23 -37
- geo_activity_playground/webui/templates/photo/new.html.j2 +1 -1
- geo_activity_playground/webui/templates/plot-macros.html.j2 +72 -0
- geo_activity_playground/webui/templates/plot_builder/edit.html.j2 +12 -7
- geo_activity_playground/webui/templates/plot_builder/import-spec.html.j2 +24 -0
- geo_activity_playground/webui/templates/plot_builder/index.html.j2 +5 -0
- geo_activity_playground/webui/templates/settings/index.html.j2 +9 -0
- geo_activity_playground/webui/templates/settings/tile-source.html.j2 +33 -0
- geo_activity_playground/webui/templates/summary/index.html.j2 +23 -230
- geo_activity_playground/webui/templates/summary/vega-chart.html.j2 +3 -0
- {geo_activity_playground-1.0.0.dist-info → geo_activity_playground-1.2.0.dist-info}/METADATA +1 -1
- {geo_activity_playground-1.0.0.dist-info → geo_activity_playground-1.2.0.dist-info}/RECORD +73 -66
- /geo_activity_playground/webui/static/{bootstrap-dark-mode.js → bootstrap/bootstrap-dark-mode.js} +0 -0
- /geo_activity_playground/webui/static/{bootstrap.bundle.min.js → bootstrap/bootstrap.bundle.min.js} +0 -0
- /geo_activity_playground/webui/static/{bootstrap.min.css → bootstrap/bootstrap.min.css} +0 -0
- /geo_activity_playground/webui/static/{android-chrome-192x192.png → favicons/android-chrome-192x192.png} +0 -0
- /geo_activity_playground/webui/static/{android-chrome-512x512.png → favicons/android-chrome-512x512.png} +0 -0
- /geo_activity_playground/webui/static/{apple-touch-icon.png → favicons/apple-touch-icon.png} +0 -0
- /geo_activity_playground/webui/static/{favicon-16x16.png → favicons/favicon-16x16.png} +0 -0
- /geo_activity_playground/webui/static/{favicon-32x32.png → favicons/favicon-32x32.png} +0 -0
- /geo_activity_playground/webui/static/{favicon-48x48.png → favicons/favicon-48x48.png} +0 -0
- /geo_activity_playground/webui/static/{favicon.ico → favicons/favicon.ico} +0 -0
- /geo_activity_playground/webui/static/{favicon.svg → favicons/favicon.svg} +0 -0
- /geo_activity_playground/webui/static/{mstile-150x150.png → favicons/mstile-150x150.png} +0 -0
- /geo_activity_playground/webui/static/{web-app-manifest-192x192.png → favicons/web-app-manifest-192x192.png} +0 -0
- /geo_activity_playground/webui/static/{web-app-manifest-512x512.png → favicons/web-app-manifest-512x512.png} +0 -0
- /geo_activity_playground/webui/static/{Leaflet.fullscreen.min.js → leaflet/Leaflet.fullscreen.min.js} +0 -0
- /geo_activity_playground/webui/static/{MarkerCluster.Default.css → leaflet/MarkerCluster.Default.css} +0 -0
- /geo_activity_playground/webui/static/{MarkerCluster.css → leaflet/MarkerCluster.css} +0 -0
- /geo_activity_playground/webui/static/{fullscreen.png → leaflet/fullscreen.png} +0 -0
- /geo_activity_playground/webui/static/{fullscreen@2x.png → leaflet/fullscreen@2x.png} +0 -0
- /geo_activity_playground/webui/static/{leaflet.css → leaflet/leaflet.css} +0 -0
- /geo_activity_playground/webui/static/{leaflet.fullscreen.css → leaflet/leaflet.fullscreen.css} +0 -0
- /geo_activity_playground/webui/static/{leaflet.js → leaflet/leaflet.js} +0 -0
- /geo_activity_playground/webui/static/{leaflet.markercluster.js → leaflet/leaflet.markercluster.js} +0 -0
- /geo_activity_playground/webui/static/{vega-embed@6 → vega/vega-embed@6.js} +0 -0
- /geo_activity_playground/webui/static/{vega-lite@4 → vega/vega-lite@4.js} +0 -0
- /geo_activity_playground/webui/static/{vega@5 → vega/vega@5.js} +0 -0
- {geo_activity_playground-1.0.0.dist-info → geo_activity_playground-1.2.0.dist-info}/LICENSE +0 -0
- {geo_activity_playground-1.0.0.dist-info → geo_activity_playground-1.2.0.dist-info}/WHEEL +0 -0
- {geo_activity_playground-1.0.0.dist-info → geo_activity_playground-1.2.0.dist-info}/entry_points.txt +0 -0
@@ -1,5 +1,7 @@
|
|
1
1
|
{% extends "page.html.j2" %}
|
2
2
|
|
3
|
+
{% from "plot-macros.html.j2" import parametric_plot %}
|
4
|
+
|
3
5
|
{% block container %}
|
4
6
|
|
5
7
|
<h1>Summary Statistics</h1>
|
@@ -9,249 +11,40 @@
|
|
9
11
|
</div>
|
10
12
|
|
11
13
|
{% if custom_plots %}
|
12
|
-
<h2>
|
13
|
-
{% for spec,
|
14
|
-
<h3>{{ spec.name }}</h3>
|
15
|
-
|
16
|
-
|
17
|
-
{{ vega_direct("custom_plot_" ~ loop.index, plot) }}
|
18
|
-
</div>
|
19
|
-
</div>
|
14
|
+
<h2>Custom plots</h2>
|
15
|
+
{% for spec, plot_groups in custom_plots %}
|
16
|
+
<h3 class="mb-3">{{ spec.name }}</h3>
|
17
|
+
{{ parametric_plot(spec, plot_groups, loop.index) }}
|
18
|
+
<p><a class="btn btn-sm btn-secondary" href="{{ url_for('plot_builder.edit', id=spec.id) }}">Edit this plot</a></p>
|
20
19
|
{% endfor %}
|
21
20
|
{% endif %}
|
22
21
|
|
23
|
-
<h2>
|
22
|
+
<h2>Per year and kind</h2>
|
24
23
|
|
25
|
-
<p>
|
24
|
+
<p>How much distance (or else) did you cover within each year? The following plots show the quantity summed up for a
|
25
|
+
year, differentiated by activity kind.</p>
|
26
26
|
|
27
|
-
|
28
|
-
<div class="col">
|
29
|
-
{{ vega_direct("plot_weekly_distance", plot_weekly_distance) }}
|
30
|
-
</div>
|
31
|
-
</div>
|
27
|
+
{{ tabbed_vega(plot_per_year_per_kind) }}
|
32
28
|
|
33
|
-
<
|
34
|
-
</p>
|
35
|
-
|
36
|
-
<div class="row mb-3">
|
37
|
-
<div class="col">
|
38
|
-
{{ vega_direct("plot_monthly_distance", plot_monthly_distance) }}
|
39
|
-
</div>
|
40
|
-
</div>
|
29
|
+
<h2>Per week</h2>
|
41
30
|
|
42
|
-
<p>
|
43
|
-
|
31
|
+
<p>What's the distance (or else) per week? See it for all weeks in all years. The larger the circle is, the more you did
|
32
|
+
in that week.</p>
|
44
33
|
|
45
|
-
|
46
|
-
<div class="col-md-6">
|
47
|
-
{{ vega_direct("plot_year_cumulative", plot_year_cumulative) }}
|
48
|
-
</div>
|
49
|
-
<div class="col-md-6">
|
50
|
-
{{ vega_direct("plot_yearly_distance", plot_yearly_distance) }}
|
51
|
-
</div>
|
52
|
-
</div>
|
53
|
-
|
54
|
-
<div class="row mb-3">
|
55
|
-
<div class="col-md-4">
|
56
|
-
<p>What's the average distance per activity? This naturally differs per activity and perhaps also varies with
|
57
|
-
the years. This table gives you all the mean values.</p>
|
58
|
-
</div>
|
59
|
-
|
60
|
-
<div class="col-md-8">
|
61
|
-
<table class="table table-sort table-arrows">
|
62
|
-
<thead>
|
63
|
-
<tr>
|
64
|
-
<th style="text-align: right;">Year</th>
|
65
|
-
{% for col in tabulate_year_kind_mean['columns'][1:] %}
|
66
|
-
<th style="text-align: right;">{{ col }}</th>
|
67
|
-
{% endfor %}
|
68
|
-
</tr>
|
69
|
-
</thead>
|
70
|
-
<tbody>
|
71
|
-
{% for row in tabulate_year_kind_mean['data'] %}
|
72
|
-
<tr>
|
73
|
-
{% for value in row %}
|
74
|
-
<td align="right">
|
75
|
-
{% if value == value %}
|
76
|
-
{{ value | round(2) }}
|
77
|
-
{% if not loop.first %}
|
78
|
-
km
|
79
|
-
{% endif %}
|
80
|
-
{% endif %}
|
81
|
-
</td>
|
82
|
-
{% endfor %}
|
83
|
-
</tr>
|
84
|
-
{% endfor %}
|
85
|
-
</tbody>
|
86
|
-
</table>
|
87
|
-
</div>
|
88
|
-
</div>
|
34
|
+
{{ tabbed_vega(plot_per_iso_week) }}
|
89
35
|
|
90
|
-
<
|
91
|
-
on that day. This makes it easy to spot those days where you really covered a lot of distance!</p>
|
36
|
+
<h2>Per day</h2>
|
92
37
|
|
38
|
+
<p>And also more fine-grained per day for the past rolling year. This is grouped by day of the week such that you can
|
39
|
+
easily spot patterns in your daily routine.</p>
|
93
40
|
|
94
|
-
|
95
|
-
{% for year, plot in plot_distance_heatmaps.items() %}
|
96
|
-
<li class="nav-item" role="presentation">
|
97
|
-
<button class="nav-link {% if loop.last %} active {% endif %}" id="heatmap-{{ year }}" data-bs-toggle="tab"
|
98
|
-
data-bs-target="#heatmap-{{ year }}-pane" type="button" role="tab" aria-controls="heatmap-{{ year }}-pane"
|
99
|
-
aria-selected="{{ loop.last }}">{{ year }}</button>
|
100
|
-
</li>
|
101
|
-
{% endfor %}
|
102
|
-
</ul>
|
41
|
+
{{ tabbed_vega(heatmap_per_day) }}
|
103
42
|
|
104
|
-
<
|
105
|
-
{% for year, plot in plot_distance_heatmaps.items() %}
|
106
|
-
{% if year %}
|
107
|
-
<div class="tab-pane fade {% if loop.last %} show active {% endif %}" id="heatmap-{{ year }}-pane" role="tabpanel"
|
108
|
-
aria-labelledby="heatmap-{{ year }}" tabindex="0">
|
109
|
-
{{ vega_direct("plot_distance_heatmap_%d"|format(year), plot) }}
|
110
|
-
</div>
|
111
|
-
{% endif %}
|
112
|
-
{% endfor %}
|
113
|
-
</div>
|
114
|
-
|
115
|
-
<h2>Elevation Gain</h2>
|
116
|
-
|
117
|
-
<p>This is your weekly elevation gain for the past rolling year, split by activity kind.</p>
|
118
|
-
|
119
|
-
<div class="row mb-3">
|
120
|
-
<div class="col">
|
121
|
-
{{ vega_direct("plot_weekly_elevation_gain", plot_weekly_elevation_gain) }}
|
122
|
-
</div>
|
123
|
-
</div>
|
124
|
-
|
125
|
-
<p>Similarly, you find the same data but aggregated by whole months for the past two years. Also split by activity kind.
|
126
|
-
</p>
|
127
|
-
|
128
|
-
<div class="row mb-3">
|
129
|
-
<div class="col">
|
130
|
-
{{ vega_direct("plot_monthly_elevation_gain", plot_monthly_elevation_gain) }}
|
131
|
-
</div>
|
132
|
-
</div>
|
43
|
+
<h2>Cumulative per year</h2>
|
133
44
|
|
134
|
-
<p>How much
|
135
|
-
|
136
|
-
</p>
|
137
|
-
|
138
|
-
<div class="row mb-3">
|
139
|
-
<div class="col-md-6">
|
140
|
-
{{ vega_direct("plot_year_elevation_gain_cumulative", plot_year_elevation_gain_cumulative) }}
|
141
|
-
</div>
|
142
|
-
<div class="col-md-6">
|
143
|
-
{{ vega_direct("plot_yearly_elevation_gain", plot_yearly_elevation_gain) }}
|
144
|
-
</div>
|
145
|
-
</div>
|
146
|
-
|
147
|
-
<div class="row mb-3">
|
148
|
-
<div class="col-md-4">
|
149
|
-
<p>What's the average elevation gain per activity? This naturally differs per activity and perhaps also varies
|
150
|
-
with
|
151
|
-
the years. This table gives you all the mean values.</p>
|
152
|
-
</div>
|
153
|
-
|
154
|
-
<div class="col-md-8">
|
155
|
-
<table class="table table-sort table-arrows">
|
156
|
-
<thead>
|
157
|
-
<tr>
|
158
|
-
<th style="text-align: right;">Year</th>
|
159
|
-
{% for col in tabulate_year_kind_mean_elevation_gain['columns'][1:] %}
|
160
|
-
<th style="text-align: right;">{{ col }}</th>
|
161
|
-
{% endfor %}
|
162
|
-
</tr>
|
163
|
-
</thead>
|
164
|
-
<tbody>
|
165
|
-
{% for row in tabulate_year_kind_mean_elevation_gain['data'] %}
|
166
|
-
<tr>
|
167
|
-
{% for value in row %}
|
168
|
-
<td align="right">
|
169
|
-
{% if value == value %}
|
170
|
-
{{ value | round(1) }}
|
171
|
-
{% if not loop.first %}
|
172
|
-
m
|
173
|
-
{% endif %}
|
174
|
-
{% endif %}
|
175
|
-
</td>
|
176
|
-
{% endfor %}
|
177
|
-
</tr>
|
178
|
-
{% endfor %}
|
179
|
-
</tbody>
|
180
|
-
</table>
|
181
|
-
</div>
|
182
|
-
</div>
|
183
|
-
|
184
|
-
<p>Next we take one row per month, each column is a day-of-month. The brighter a box, the more elevation gain you have
|
185
|
-
covered
|
186
|
-
on that day. This makes it easy to spot those days where you really covered a lot of elevation gain!</p>
|
187
|
-
|
188
|
-
|
189
|
-
<ul class="nav nav-pills mb-3" id="myTab" role="tablist">
|
190
|
-
{% for year, plot in plot_elevation_gain_heatmaps.items() %}
|
191
|
-
<li class="nav-item" role="presentation">
|
192
|
-
<button class="nav-link {% if loop.last %} active {% endif %}" id="heatmap-elevation-gain-{{ year }}"
|
193
|
-
data-bs-toggle="tab" data-bs-target="#heatmap-elevation-gain-{{ year }}-pane" type="button" role="tab"
|
194
|
-
aria-controls="heatmap-elevation-gain-{{ year }}-pane" aria-selected="{{ loop.last }}">{{ year }}</button>
|
195
|
-
</li>
|
196
|
-
{% endfor %}
|
197
|
-
</ul>
|
198
|
-
|
199
|
-
<div class="tab-content mb-3" id="myTabContent">
|
200
|
-
{% for year, plot in plot_elevation_gain_heatmaps.items() %}
|
201
|
-
<div class="tab-pane fade {% if loop.last %} show active {% endif %}" id="heatmap-elevation-gain-{{ year }}-pane"
|
202
|
-
role="tabpanel" aria-labelledby="heatmap-elevation-gain-{{ year }}" tabindex="0">
|
203
|
-
{{ vega_direct("plot_elevation_gain_heatmap_%d"|format(year), plot) }}
|
204
|
-
</div>
|
205
|
-
{% endfor %}
|
206
|
-
</div>
|
207
|
-
|
208
|
-
<h2>Hall of Fame</h2>
|
209
|
-
|
210
|
-
<script>
|
211
|
-
function add_map(id, geojson) {
|
212
|
-
let map = L.map(`map-${id}`, {
|
213
|
-
fullscreenControl: true
|
214
|
-
})
|
215
|
-
L.tileLayer('/tile/color/{z}/{x}/{y}.png', {
|
216
|
-
maxZoom: 19,
|
217
|
-
attribution: '{{ map_tile_attribution|safe }}'
|
218
|
-
}).addTo(map)
|
219
|
-
|
220
|
-
let geojson_layer = L.geoJSON(geojson).addTo(map)
|
221
|
-
map.fitBounds(geojson_layer.getBounds())
|
222
|
-
return map
|
223
|
-
}
|
224
|
-
</script>
|
225
|
-
|
226
|
-
{% for activity_batch in nominations|batch(3) %}
|
227
|
-
<div class="row row-cols-1 row-cols-md-3 g-4 mb-3">
|
228
|
-
{% for activity, reasons, line_geojson in activity_batch %}
|
229
|
-
<div class="col">
|
230
|
-
<div class="card">
|
231
|
-
<div class="card-img-top" id="map-{{ activity.id }}" style="height: 200px; width: 100%;"></div>
|
232
|
-
<script>
|
233
|
-
let map{{ activity.id }} = add_map("{{ activity.id }}", {{ line_geojson | safe }})
|
234
|
-
</script>
|
235
|
-
<div class="card-body">
|
236
|
-
<a href="{{ url_for('activity.show', id=activity.id) }}">
|
237
|
-
<h5 class="card-title">{{ activity["name"] }}</h5>
|
238
|
-
</a>
|
239
|
-
<p class="card-text">
|
240
|
-
<ul style='list-style-type: "🏆 "'>
|
241
|
-
{% for reason in reasons %}
|
242
|
-
<li>{{ reason }}</li>
|
243
|
-
{% endfor %}
|
244
|
-
</ul>
|
245
|
-
</p>
|
246
|
-
<p class="card-text"><small class="text-body-secondary"></small>{{ activity.kind }} with {{
|
247
|
-
(activity.distance_km)|round(1) }} km / {{activity.elevation_gain|round|int}} m in {{
|
248
|
-
activity.elapsed_time|td }} on {{ activity.start|dt }}</small></p>
|
249
|
-
</div>
|
250
|
-
</div>
|
251
|
-
</div>
|
252
|
-
{% endfor %}
|
253
|
-
</div>
|
254
|
-
{% endfor %}
|
45
|
+
<p>How much distance (or else) have you covered in each year up to that time of the year? This lets you see how you are
|
46
|
+
doing compared to previous years.</p>
|
255
47
|
|
48
|
+
{{ tabbed_vega(plot_per_year_cumulative) }}
|
256
49
|
|
257
50
|
{% endblock %}
|
@@ -11,19 +11,20 @@ geo_activity_playground/alembic/versions/93cc82ad1b60_add_parametricplotspec.py,
|
|
11
11
|
geo_activity_playground/alembic/versions/ab83b9d23127_add_upstream_id.py,sha256=Wz02lBP2r7-09DjuQP8u8i7ypQ2SZU5RUc422-_ZBDk,851
|
12
12
|
geo_activity_playground/alembic/versions/b03491c593f6_add_crop_indices.py,sha256=1pt7aes0PWJXZ98HxqeDK-ehaU9KLApjCmZYoqCa8V0,975
|
13
13
|
geo_activity_playground/alembic/versions/da2cba03b71d_add_photos.py,sha256=_DvUge61HsoF9LppXuavIzjAhoe1kp-dnaynxtd9h30,1394
|
14
|
+
geo_activity_playground/alembic/versions/dc8073871da7_add_plotspec_group_by.py,sha256=AekV_JiJM5Q2RNf57XjnJpknAQZQ1cGBvKjj7Jtn304,845
|
14
15
|
geo_activity_playground/alembic/versions/e02e27876deb_add_square_planner_bookmark_name.py,sha256=Y0OMxp5z_-CQ83rww6GEBFRawXu0J0pLrLArgSjJ7wQ,866
|
15
16
|
geo_activity_playground/alembic/versions/script.py.mako,sha256=3qBrHBf7F7ChKDUIdiNItiSXrDpgQdM7sR0YKzpaC50,689
|
16
17
|
geo_activity_playground/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
17
18
|
geo_activity_playground/core/activities.py,sha256=apP_-Rg1ub3lh7RARMGXf2BOmJTiahxqpX_soEnYF3E,4681
|
18
|
-
geo_activity_playground/core/config.py,sha256=
|
19
|
+
geo_activity_playground/core/config.py,sha256=mmdMQ5iCLNGnAlriT1ETEVS-gM6Aq_9sg22QECHj4n8,5358
|
19
20
|
geo_activity_playground/core/coordinates.py,sha256=tDfr9mlXhK6E_MMIJ0vYWVCoH0Lq8uyuaqUgaa8i0jg,966
|
20
|
-
geo_activity_playground/core/datamodel.py,sha256=
|
21
|
+
geo_activity_playground/core/datamodel.py,sha256=yzHdALuA9MShuBXtyEUoE0PS_7C8SNw9Weqa21_ALg4,14820
|
21
22
|
geo_activity_playground/core/enrichment.py,sha256=Tju9sKI-V40CmsS9RiNeGz-Zhp_hx1xjlaWzJMrasXI,7640
|
22
23
|
geo_activity_playground/core/export.py,sha256=ayOmhWL72263oP9NLIZRYCg_Db0GLUFhgNIL_MCrV-E,4435
|
23
24
|
geo_activity_playground/core/heart_rate.py,sha256=-S3WAhS7AOywrw_Lk5jfuo_fu6zvZQ1VtjwEKSycWpU,1542
|
24
25
|
geo_activity_playground/core/meta_search.py,sha256=nyvCuR7v0pd6KjA8W5Kr71bBafRdE_ol7uSFRJs4eAM,6662
|
25
26
|
geo_activity_playground/core/missing_values.py,sha256=HjonaLV0PFMICnuMrbdUNnK9uy_8PBh_RxI5GuEMQK0,250
|
26
|
-
geo_activity_playground/core/parametric_plot.py,sha256=
|
27
|
+
geo_activity_playground/core/parametric_plot.py,sha256=8CKB8dey7EmZtQnl6IOgBhpxkw0UCpQPWeiBw5PqW8k,5737
|
27
28
|
geo_activity_playground/core/paths.py,sha256=GGNpqhQL7etn8-NV6hVGLT7yBZYq7AwXnWfX3l_Cj48,2670
|
28
29
|
geo_activity_playground/core/privacy_zones.py,sha256=4TumHsVUN1uW6RG3ArqTXDykPVipF98DCxVBe7YNdO8,512
|
29
30
|
geo_activity_playground/core/raster_map.py,sha256=Cq8dNLdxVQg3Agzn2bmXVu0-8kZf56QrSe-LKNn3jaU,7994
|
@@ -53,95 +54,99 @@ geo_activity_playground/importers/test_csv_parser.py,sha256=nOTVTdlzIY0TDcbWp7xN
|
|
53
54
|
geo_activity_playground/importers/test_directory.py,sha256=_fn_-y98ZyElbG0BRxAmGFdtGobUShPU86SdEOpuv-A,691
|
54
55
|
geo_activity_playground/importers/test_strava_api.py,sha256=7b8bl5Rh2BctCmvTPEhCadxtUOq3mfzuadD6F5XxRio,398
|
55
56
|
geo_activity_playground/webui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
56
|
-
geo_activity_playground/webui/app.py,sha256=
|
57
|
+
geo_activity_playground/webui/app.py,sha256=BXSAvvYEs4TRbQBgA_Y8iEI0Mwv3YkZScTcHIGZVYa4,8539
|
57
58
|
geo_activity_playground/webui/authenticator.py,sha256=dhREYOu_TCD_nzFNuSlHIbf5K6TmwKdXtr1wxD8fBcc,1491
|
58
59
|
geo_activity_playground/webui/blueprints/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
59
|
-
geo_activity_playground/webui/blueprints/activity_blueprint.py,sha256=
|
60
|
-
geo_activity_playground/webui/blueprints/auth_blueprint.py,sha256=
|
61
|
-
geo_activity_playground/webui/blueprints/bubble_chart_blueprint.py,sha256=
|
62
|
-
geo_activity_playground/webui/blueprints/calendar_blueprint.py,sha256=
|
63
|
-
geo_activity_playground/webui/blueprints/eddington_blueprints.py,sha256=
|
64
|
-
geo_activity_playground/webui/blueprints/entry_views.py,sha256=
|
65
|
-
geo_activity_playground/webui/blueprints/equipment_blueprint.py,sha256=
|
66
|
-
geo_activity_playground/webui/blueprints/explorer_blueprint.py,sha256=
|
67
|
-
geo_activity_playground/webui/blueprints/export_blueprint.py,sha256=
|
60
|
+
geo_activity_playground/webui/blueprints/activity_blueprint.py,sha256=F_m1jkg9dnQg7f6QfBrBHllFfw6TUuzc4UPMbWsIbI0,26732
|
61
|
+
geo_activity_playground/webui/blueprints/auth_blueprint.py,sha256=iCm3hZphQKR9qFgytOrfnSmr-Og1gHuQ1Djiv2o_bkE,1031
|
62
|
+
geo_activity_playground/webui/blueprints/bubble_chart_blueprint.py,sha256=8R1rUVoyofGhUgesPunys1HoLPYinvhA46BBnMvEn9Q,2880
|
63
|
+
geo_activity_playground/webui/blueprints/calendar_blueprint.py,sha256=SmOu5AfNNoWcJJNduEfPtaPRvr4EZLYAeIDLUK9P1LY,2939
|
64
|
+
geo_activity_playground/webui/blueprints/eddington_blueprints.py,sha256=Ya5GJxfVESwmRlgMTYe9g75g8JHHTAAvYFmSD-3Uz4Q,8987
|
65
|
+
geo_activity_playground/webui/blueprints/entry_views.py,sha256=5DZOl8t3QouMdr837o3Hj1YH4hyuP_v7l5tvE_MLPl0,2927
|
66
|
+
geo_activity_playground/webui/blueprints/equipment_blueprint.py,sha256=8L_7NZGErvu4jyigi2gg7HN_gegZRdsSFahUH7Dz6Lw,5727
|
67
|
+
geo_activity_playground/webui/blueprints/explorer_blueprint.py,sha256=vOzDI2lq-eBeBRz9vHMl-LENyeHkHBS68q-6AuBcC_Q,23182
|
68
|
+
geo_activity_playground/webui/blueprints/export_blueprint.py,sha256=C9yFH5gEJs2YtWE-EhcGDEyGwwaLgC1umybgIRi6duE,1036
|
69
|
+
geo_activity_playground/webui/blueprints/hall_of_fame_blueprint.py,sha256=zNYKw7ps9Yx9995Zsj4psAlOLnt4tFi2Hwp74-kjmzw,2806
|
68
70
|
geo_activity_playground/webui/blueprints/heatmap_blueprint.py,sha256=iHI5YJYhX7ZOlzTgzl2efIRDzt3UMYCx7X4-LVd0MWk,8702
|
69
|
-
geo_activity_playground/webui/blueprints/photo_blueprint.py,sha256=
|
70
|
-
geo_activity_playground/webui/blueprints/plot_builder_blueprint.py,sha256=
|
71
|
+
geo_activity_playground/webui/blueprints/photo_blueprint.py,sha256=ZBh7Gt5vEzeW8JDK3t-3RcLTT40mbOqRkttkicgcIRM,7885
|
72
|
+
geo_activity_playground/webui/blueprints/plot_builder_blueprint.py,sha256=nGtYblRTJ0rasJvl_L35cs1Iry4LONPy_9TY4ytXB-Q,3838
|
71
73
|
geo_activity_playground/webui/blueprints/search_blueprint.py,sha256=Sv_KL1Cdai26y51qVfI-5jZLhtElREsEar1dbR_VAC4,2275
|
72
|
-
geo_activity_playground/webui/blueprints/settings_blueprint.py,sha256=
|
74
|
+
geo_activity_playground/webui/blueprints/settings_blueprint.py,sha256=uPN4ORhWyLVo23YKhRFjGB-VxJFOoJIHR5NLmHi11k4,20856
|
73
75
|
geo_activity_playground/webui/blueprints/square_planner_blueprint.py,sha256=xVaxJxmt8Dysl3UL9f2y__LVLtTH2Np1Ust4OSXKRAk,4746
|
74
|
-
geo_activity_playground/webui/blueprints/summary_blueprint.py,sha256=
|
76
|
+
geo_activity_playground/webui/blueprints/summary_blueprint.py,sha256=AlRnsPUamoqsQ5JD5PpmSsJdhxDgrJOq5O11MQM3gME,6680
|
75
77
|
geo_activity_playground/webui/blueprints/tile_blueprint.py,sha256=YzZf9OrNdjhc1_j4MtO1DMcw1uCv29ueNsYd-mWqgbg,837
|
76
78
|
geo_activity_playground/webui/blueprints/upload_blueprint.py,sha256=3nJGGNYjB22aFXDlgCFMK8t0RRkqQi_Pr33H3DtVP5M,5177
|
77
|
-
geo_activity_playground/webui/columns.py,sha256=
|
79
|
+
geo_activity_playground/webui/columns.py,sha256=o5gJbMbB5gYlxWP1wktle5Ve_jjymslaJpIyCiKWBKY,1331
|
78
80
|
geo_activity_playground/webui/flasher.py,sha256=Covc1D9cO_jjokRWnvyiXCc2tfp3aZ8XkNqFdA1AXtk,500
|
79
81
|
geo_activity_playground/webui/plot_util.py,sha256=5Uesjj-xcMskQX2z9viDZYHSxLGrH2a5dHA1ogsJW9U,261
|
80
82
|
geo_activity_playground/webui/search_util.py,sha256=gH2cOM1FTAozZUlSQ4C1dR1xlV-8e82pD1PPi_pPBNY,2647
|
81
|
-
geo_activity_playground/webui/static/
|
82
|
-
geo_activity_playground/webui/static/
|
83
|
-
geo_activity_playground/webui/static/
|
84
|
-
geo_activity_playground/webui/static/android-chrome-192x192.png,sha256=yxZgo8Jw4hrgOgrn3tvi9G0AXWGFD29kjCuxC07WoT4,17610
|
85
|
-
geo_activity_playground/webui/static/android-chrome-512x512.png,sha256=Uiv62gQpUjMOdp9d6exzd6IyOi5zgQdgjIVVWYw5m98,38891
|
86
|
-
geo_activity_playground/webui/static/apple-touch-icon.png,sha256=TNLa0YIS1mbWajvIQthC2bGve6ET3DbJzrAbs6Pf3Ps,13046
|
87
|
-
geo_activity_playground/webui/static/
|
88
|
-
geo_activity_playground/webui/static/
|
89
|
-
geo_activity_playground/webui/static/
|
90
|
-
geo_activity_playground/webui/static/
|
91
|
-
geo_activity_playground/webui/static/favicon
|
92
|
-
geo_activity_playground/webui/static/favicon
|
93
|
-
geo_activity_playground/webui/static/
|
94
|
-
geo_activity_playground/webui/static/
|
95
|
-
geo_activity_playground/webui/static/
|
96
|
-
geo_activity_playground/webui/static/
|
97
|
-
geo_activity_playground/webui/static/fullscreen@2x.png,sha256=HVi2guZO6sekf2NggilbzjUTvJDweXpSMBS81fhtnX0,420
|
83
|
+
geo_activity_playground/webui/static/bootstrap/bootstrap-dark-mode.js,sha256=XfyhxIFgjDc6aEj0kYgKpG5zjS5gvyhWCJmNfUG4HJY,2622
|
84
|
+
geo_activity_playground/webui/static/bootstrap/bootstrap.bundle.min.js,sha256=gvZPYrsDwbwYJLD5yeBfcNujPhRoGOY831wwbIzz3t0,80663
|
85
|
+
geo_activity_playground/webui/static/bootstrap/bootstrap.min.css,sha256=MBffSnbbXwHCuZtgPYiwMQbfE7z-GOZ7fBPCNB06Z98,232948
|
86
|
+
geo_activity_playground/webui/static/favicons/android-chrome-192x192.png,sha256=yxZgo8Jw4hrgOgrn3tvi9G0AXWGFD29kjCuxC07WoT4,17610
|
87
|
+
geo_activity_playground/webui/static/favicons/android-chrome-512x512.png,sha256=Uiv62gQpUjMOdp9d6exzd6IyOi5zgQdgjIVVWYw5m98,38891
|
88
|
+
geo_activity_playground/webui/static/favicons/apple-touch-icon.png,sha256=TNLa0YIS1mbWajvIQthC2bGve6ET3DbJzrAbs6Pf3Ps,13046
|
89
|
+
geo_activity_playground/webui/static/favicons/browserconfig.xml,sha256=j_pqBolBExtcdRMHewyKI442UJgC_4-WrFOlima9xqM,262
|
90
|
+
geo_activity_playground/webui/static/favicons/favicon-16x16.png,sha256=Yy8lRjGB7itDaeUI_l_Toq3OO0gzgPGnqIfM3CqcQy0,1419
|
91
|
+
geo_activity_playground/webui/static/favicons/favicon-32x32.png,sha256=K52R99pLGgWHnjFPPkVieBm051Er-sTCiMvgLr9Alrg,2587
|
92
|
+
geo_activity_playground/webui/static/favicons/favicon-48x48.png,sha256=NIIuC1OV1umv2pETJH2yDUZhhzJDk0TERsbwA5tQM9A,2008
|
93
|
+
geo_activity_playground/webui/static/favicons/favicon.ico,sha256=zAkbToeh1fq8rh6osWyEjr-cgdX-ec5viI0vPAwLn7A,15086
|
94
|
+
geo_activity_playground/webui/static/favicons/favicon.svg,sha256=gwESIDvoxOpg3tHvbiAc-wVEM4fY0pFzWnX_guQcv1c,52247
|
95
|
+
geo_activity_playground/webui/static/favicons/mstile-150x150.png,sha256=j1ANUQJ1Xi1DR2sGqYZztob2ypfGw04eNtGpN9SxExA,11964
|
96
|
+
geo_activity_playground/webui/static/favicons/site.webmanifest,sha256=srtkRQsAoMfef4EryMK8-18Ik8n8tv0Q9zJMLtPYNuo,468
|
97
|
+
geo_activity_playground/webui/static/favicons/web-app-manifest-192x192.png,sha256=eEImN6iWfSv-EnSNPL5WbX84PKakse_8VZMBPWWye3o,13582
|
98
|
+
geo_activity_playground/webui/static/favicons/web-app-manifest-512x512.png,sha256=vU9oQ4HnQerFDZVzcAT9twj4_Doc6_9v9wVvoRI-f_E,48318
|
98
99
|
geo_activity_playground/webui/static/images/layers-2x.png,sha256=Bm2sqFDY_77wB68AsG6sABVyje4nnFHzy2xxbffELt8,1259
|
99
100
|
geo_activity_playground/webui/static/images/layers.png,sha256=Hbvp0CjikvNvy6j4s6KNXokydU_CIVuaxp5M3s9RB8Y,696
|
100
101
|
geo_activity_playground/webui/static/images/marker-icon-2x.png,sha256=ABecTB7oMNOhCEEq4NKU9Vd2z-sIXGASmjmqb8SuJSg,2464
|
101
102
|
geo_activity_playground/webui/static/images/marker-icon.png,sha256=V0w6XMqF9BFAhbaEFZbWLwDXyJLHsD8oy_owHesdxDc,1466
|
102
103
|
geo_activity_playground/webui/static/images/marker-shadow.png,sha256=Jk9cZAM58ELdcpBiz8BMF_jqDymIK1OOOEjtjxDttNo,618
|
103
|
-
geo_activity_playground/webui/static/leaflet.
|
104
|
-
geo_activity_playground/webui/static/leaflet.
|
105
|
-
geo_activity_playground/webui/static/leaflet.
|
106
|
-
geo_activity_playground/webui/static/leaflet.
|
107
|
-
geo_activity_playground/webui/static/
|
108
|
-
geo_activity_playground/webui/static/
|
109
|
-
geo_activity_playground/webui/static/
|
104
|
+
geo_activity_playground/webui/static/leaflet/Leaflet.fullscreen.min.js,sha256=MMWj_yFOercjzhk8wKIIKyDCK7olXrwk_7R7TjDhGYs,3677
|
105
|
+
geo_activity_playground/webui/static/leaflet/MarkerCluster.Default.css,sha256=LWhzWaQGZRsWFrrJxg-6Zn8TT84k0_trtiHBc6qcGpY,1346
|
106
|
+
geo_activity_playground/webui/static/leaflet/MarkerCluster.css,sha256=-bdWuWOXMFkX0v9Cvr3OWClPiYefDQz9GGZP_7xZxdc,886
|
107
|
+
geo_activity_playground/webui/static/leaflet/fullscreen.png,sha256=yDtz-dhjuAoo6q9xc00-_XNTrGwEWrN80pOneFdol4g,299
|
108
|
+
geo_activity_playground/webui/static/leaflet/fullscreen@2x.png,sha256=HVi2guZO6sekf2NggilbzjUTvJDweXpSMBS81fhtnX0,420
|
109
|
+
geo_activity_playground/webui/static/leaflet/leaflet.css,sha256=p4NxAoJBhIIN-hmNHrzRCf9tD_miZyoHS5obTRR9BMY,14806
|
110
|
+
geo_activity_playground/webui/static/leaflet/leaflet.fullscreen.css,sha256=YTbhDGEH5amI_JfotPMN7IByFpsN9e4tCBnv5oNdvHU,994
|
111
|
+
geo_activity_playground/webui/static/leaflet/leaflet.js,sha256=20nQCchB9co0qIjJZRGuk2_Z9VM-kNiyxNV1lvTlZBo,147552
|
112
|
+
geo_activity_playground/webui/static/leaflet/leaflet.markercluster.js,sha256=WL6HHfYfbFEkZOFdsJQeY7lJG_E5airjvqbznghUzRw,33724
|
113
|
+
geo_activity_playground/webui/static/server-side-explorer.js,sha256=5_I1OnHjKE4j9KFS7LP6LTpLPMW0buanlNfI-_xhrGo,1845
|
110
114
|
geo_activity_playground/webui/static/table-sort.min.js,sha256=sFeDrgkXTePr2ciJU9_mLh-Z8qtYhPIQMgOZtj0LwBY,8506
|
111
|
-
geo_activity_playground/webui/static/vega-embed@6,sha256=EtAqz74-xZ75o33UgiouBOKWG1u7Zxu-Zh0iIXFbmdo,60630
|
112
|
-
geo_activity_playground/webui/static/vega-lite@4,sha256=roXmcY9bUF91uB9V-eSEUHEgfwoXe6B1xoDPuIe5ou8,267999
|
113
|
-
geo_activity_playground/webui/static/vega@5,sha256=5DLHUaY2P0ph2mKSDMfX69E88J2ClJ-PSGJI-Acdw84,514536
|
114
|
-
geo_activity_playground/webui/static/web-app-manifest-192x192.png,sha256=eEImN6iWfSv-EnSNPL5WbX84PKakse_8VZMBPWWye3o,13582
|
115
|
-
geo_activity_playground/webui/static/web-app-manifest-512x512.png,sha256=vU9oQ4HnQerFDZVzcAT9twj4_Doc6_9v9wVvoRI-f_E,48318
|
115
|
+
geo_activity_playground/webui/static/vega/vega-embed@6.js,sha256=EtAqz74-xZ75o33UgiouBOKWG1u7Zxu-Zh0iIXFbmdo,60630
|
116
|
+
geo_activity_playground/webui/static/vega/vega-lite@4.js,sha256=roXmcY9bUF91uB9V-eSEUHEgfwoXe6B1xoDPuIe5ou8,267999
|
117
|
+
geo_activity_playground/webui/static/vega/vega@5.js,sha256=5DLHUaY2P0ph2mKSDMfX69E88J2ClJ-PSGJI-Acdw84,514536
|
116
118
|
geo_activity_playground/webui/templates/activity/day.html.j2,sha256=CHEvxlZralCm3-kTbZsGn0xj9VdSv9V5zalPSoAluus,2810
|
117
119
|
geo_activity_playground/webui/templates/activity/edit.html.j2,sha256=r979JPqaZi_2ymTykxpkjdpw0D2tsB9VJaf7OaGPaME,1961
|
118
120
|
geo_activity_playground/webui/templates/activity/lines.html.j2,sha256=_ZDg1ruW-9UMJfOudy1-uY_-IcSSaagq7tPCih5Bb8g,1079
|
119
|
-
geo_activity_playground/webui/templates/activity/name.html.j2,sha256=
|
120
|
-
geo_activity_playground/webui/templates/activity/show.html.j2,sha256=
|
121
|
+
geo_activity_playground/webui/templates/activity/name.html.j2,sha256=RYbNGzPexa4gRUWRjw-C9nWvp5lI7agAZZCS3Du7nAs,2661
|
122
|
+
geo_activity_playground/webui/templates/activity/show.html.j2,sha256=8dcEUYtjJPlInB1G3c3qJAGtpknDkd7YLufTvOT6mcY,10793
|
121
123
|
geo_activity_playground/webui/templates/activity/trim.html.j2,sha256=3oAXQab6QqWjGBC9KCvWNOVn8uRmxoDLj3hx_O63TXc,1836
|
122
124
|
geo_activity_playground/webui/templates/auth/index.html.j2,sha256=wzA0uxpiT1ktDadgnjvFXc9iUGMFm9GhjDkavl3S1h4,646
|
123
125
|
geo_activity_playground/webui/templates/bubble_chart/index.html.j2,sha256=yd7lWjtxxVmJZqCiXb0Y1gMEOQ7LQYJXEdpE7JB1OZY,1616
|
124
126
|
geo_activity_playground/webui/templates/calendar/index.html.j2,sha256=8dV9yeDwfv0Mm81mhiPHN5r3hdPUWl1Yye03x0Rqbo8,1601
|
125
127
|
geo_activity_playground/webui/templates/calendar/month.html.j2,sha256=IEhGqknL69okX5brMzTgZdnmrgUQLmGGkDE5zd7RG7s,2008
|
126
|
-
geo_activity_playground/webui/templates/eddington/distance.html.j2,sha256=
|
127
|
-
geo_activity_playground/webui/templates/eddington/elevation_gain.html.j2,sha256=
|
128
|
-
geo_activity_playground/webui/templates/elevation_eddington/index.html.j2,sha256=
|
129
|
-
geo_activity_playground/webui/templates/equipment/index.html.j2,sha256=
|
130
|
-
geo_activity_playground/webui/templates/explorer/server-side.html.j2,sha256=
|
128
|
+
geo_activity_playground/webui/templates/eddington/distance.html.j2,sha256=9cLlIrImgMYYE9AKjhqHMpjpTem8sMEnVHt78krWf7w,3508
|
129
|
+
geo_activity_playground/webui/templates/eddington/elevation_gain.html.j2,sha256=h2mI1Uc1-P7rN_SeCVP_uadpQqX09ZpBG3Z6N8QWNLw,4723
|
130
|
+
geo_activity_playground/webui/templates/elevation_eddington/index.html.j2,sha256=WjquRFWaMzIZrvByhRIuhJbSCUW2HTfMck6THQHZI-I,4743
|
131
|
+
geo_activity_playground/webui/templates/equipment/index.html.j2,sha256=6pzSCJACMXA1fKgsO_KrCTvpumAKlelzj5f9dReey14,1742
|
132
|
+
geo_activity_playground/webui/templates/explorer/server-side.html.j2,sha256=ynejXeUjb-ZwkvPtbD20R8R1KLUIFsyM5VJgwW7vzM8,3133
|
131
133
|
geo_activity_playground/webui/templates/export/index.html.j2,sha256=vxqpAm9KnT405Qz7q0_td-HZ4mCjcPR4Lp6EnIEWisg,1652
|
134
|
+
geo_activity_playground/webui/templates/hall_of_fame/index.html.j2,sha256=t02N1VtTyj_pBBSd3mzO1xNyDLwGa1XdH0RFvKAmdIg,1766
|
132
135
|
geo_activity_playground/webui/templates/heatmap/index.html.j2,sha256=uM-l4gmDKw6307ZH_zb8zroMTKBuOkrR0Bu4fTEJE0s,1231
|
133
|
-
geo_activity_playground/webui/templates/home.html.j2,sha256=
|
134
|
-
geo_activity_playground/webui/templates/page.html.j2,sha256=
|
136
|
+
geo_activity_playground/webui/templates/home.html.j2,sha256=R0T4z9aEUD0dAnCrdXcu9O3GafXruaZjKKDmks3ST64,2182
|
137
|
+
geo_activity_playground/webui/templates/page.html.j2,sha256=sN1OmuN4c4g6M4h_hZ8UMX4wsWZq7_r0M8fgzpxyKss,12016
|
135
138
|
geo_activity_playground/webui/templates/photo/map.html.j2,sha256=MWhqt5Q8ExiRhgxndcEnwngOj1qw0E0u4hKuiuY24Gg,1437
|
136
|
-
geo_activity_playground/webui/templates/photo/new.html.j2,sha256=
|
137
|
-
geo_activity_playground/webui/templates/
|
138
|
-
geo_activity_playground/webui/templates/plot_builder/
|
139
|
+
geo_activity_playground/webui/templates/photo/new.html.j2,sha256=0BO4ZJgJQM1Hlp9SHylEOfthpQlywDc-xFs8K_Spptc,392
|
140
|
+
geo_activity_playground/webui/templates/plot-macros.html.j2,sha256=lzsu8c8fcsVjgpdcmpwCa1e6EPALZtCS9RbvQ-DAtAs,2861
|
141
|
+
geo_activity_playground/webui/templates/plot_builder/edit.html.j2,sha256=S_ReKqpSmtf4wPvkRjdNz8WXUBfSIXQ3aJnLMIkLJaY,2519
|
142
|
+
geo_activity_playground/webui/templates/plot_builder/import-spec.html.j2,sha256=jCumhh-xdxKhVEZtkWHFMWPMiE5wdBZVpQVcrbnXr2c,668
|
143
|
+
geo_activity_playground/webui/templates/plot_builder/index.html.j2,sha256=ERWPyuQQiSl2h24eRr1mmKamjhxfiFpAMMIT1b2z-DU,1094
|
139
144
|
geo_activity_playground/webui/templates/search/index.html.j2,sha256=tZ2RwiaC1cLCLfcxbDvpnLSjPeqnTkByAT6ncVitnLw,1318
|
140
145
|
geo_activity_playground/webui/templates/search_form.html.j2,sha256=BBxT2aAUlOZ41d2hE9EKX0Jcr0FKLCp_9cgWYyrVtE8,8261
|
141
146
|
geo_activity_playground/webui/templates/settings/admin-password.html.j2,sha256=VYwddpObD1RpeTH5Dm4y7VtmT7kwURDCIjxyzJeq08c,495
|
142
147
|
geo_activity_playground/webui/templates/settings/color-schemes.html.j2,sha256=iR91Wxd2_TMuIo9dBDZBrWSUGHNwTwzC6O8oNH-XBt4,1653
|
143
148
|
geo_activity_playground/webui/templates/settings/heart-rate.html.j2,sha256=UPT3MegRgSeff36lhCo0l3ZwhqNSIg5gM6h2s32GkCY,4255
|
144
|
-
geo_activity_playground/webui/templates/settings/index.html.j2,sha256=
|
149
|
+
geo_activity_playground/webui/templates/settings/index.html.j2,sha256=mapSC1TTS_cFg7K0eNuTbENTMg2EFb1atPdIj14xU_c,5468
|
145
150
|
geo_activity_playground/webui/templates/settings/manage-equipments.html.j2,sha256=vPGGlwyG_xMZc4a6JdajwWMJBfN1lBNBtDSt6QPJBiY,1585
|
146
151
|
geo_activity_playground/webui/templates/settings/manage-kinds.html.j2,sha256=382VW-cEe0iPJ8TNL2jrcRtVYb_RFdzDyeC1ncpWZ9M,1616
|
147
152
|
geo_activity_playground/webui/templates/settings/metadata-extraction.html.j2,sha256=0g9RlHFKipN45RaH_FANWnY1lfXUkKjtc_9B-vJ19LQ,2298
|
@@ -152,12 +157,14 @@ geo_activity_playground/webui/templates/settings/strava.html.j2,sha256=GCE5gskQ6
|
|
152
157
|
geo_activity_playground/webui/templates/settings/tags-edit.html.j2,sha256=Lna2QBacuMwaFODGCVulOpHSHHjqCdhNJg2c6i-ogY0,586
|
153
158
|
geo_activity_playground/webui/templates/settings/tags-list.html.j2,sha256=6giFWtVCTLXLC_Ojh56XhB_1Rouit9YzIs_YHIiayLg,369
|
154
159
|
geo_activity_playground/webui/templates/settings/tags-new.html.j2,sha256=xi6KbwydDVrUJM4_ty4KbMa74k3QaoyZhZAn2paERnM,358
|
160
|
+
geo_activity_playground/webui/templates/settings/tile-source.html.j2,sha256=C9kRBBuorjZ8Ctx8_0Hft7EHLBQHbypFFLq4eQX6GVI,1228
|
155
161
|
geo_activity_playground/webui/templates/square_planner/index.html.j2,sha256=-OnY2nQCgZCslOzf28ogZwFykwF8tZm7PgFwOE3eBDk,8176
|
156
|
-
geo_activity_playground/webui/templates/summary/index.html.j2,sha256=
|
162
|
+
geo_activity_playground/webui/templates/summary/index.html.j2,sha256=VuSed6GU-FzjPC1aCYuEuK5B8Rw2D8NcseNLTFIGxkA,1441
|
163
|
+
geo_activity_playground/webui/templates/summary/vega-chart.html.j2,sha256=mw8HtigeSnShTFZNG56UGUqHLJe70kvFR3o0TT71dBI,94
|
157
164
|
geo_activity_playground/webui/templates/upload/index.html.j2,sha256=I1Ix8tDS3YBdi-HdaNfjkzYXVVCjfUTe5PFTnap1ydc,775
|
158
165
|
geo_activity_playground/webui/templates/upload/reload.html.j2,sha256=YZWX5eDeNyqKJdQAywDBcU8DZBm22rRBbZqFjrFrCvQ,556
|
159
|
-
geo_activity_playground-1.
|
160
|
-
geo_activity_playground-1.
|
161
|
-
geo_activity_playground-1.
|
162
|
-
geo_activity_playground-1.
|
163
|
-
geo_activity_playground-1.
|
166
|
+
geo_activity_playground-1.2.0.dist-info/LICENSE,sha256=4RpAwKO8bPkfXH2lnpeUW0eLkNWglyG4lbrLDU_MOwY,1070
|
167
|
+
geo_activity_playground-1.2.0.dist-info/METADATA,sha256=THvhUmP_4CRz5cGUzxQg_LsLVQJaFEgEHoPPwVGzI1o,1890
|
168
|
+
geo_activity_playground-1.2.0.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
169
|
+
geo_activity_playground-1.2.0.dist-info/entry_points.txt,sha256=pbNlLI6IIZIp7nPYCfAtiSiz2oxJSCl7DODD6SPkLKk,81
|
170
|
+
geo_activity_playground-1.2.0.dist-info/RECORD,,
|
/geo_activity_playground/webui/static/{bootstrap-dark-mode.js → bootstrap/bootstrap-dark-mode.js}
RENAMED
File without changes
|
/geo_activity_playground/webui/static/{bootstrap.bundle.min.js → bootstrap/bootstrap.bundle.min.js}
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
/geo_activity_playground/webui/static/{apple-touch-icon.png → favicons/apple-touch-icon.png}
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
/geo_activity_playground/webui/static/{leaflet.fullscreen.css → leaflet/leaflet.fullscreen.css}
RENAMED
File without changes
|
File without changes
|
/geo_activity_playground/webui/static/{leaflet.markercluster.js → leaflet/leaflet.markercluster.js}
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{geo_activity_playground-1.0.0.dist-info → geo_activity_playground-1.2.0.dist-info}/entry_points.txt
RENAMED
File without changes
|