geo-activity-playground 0.42.0__py3-none-any.whl → 0.43.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.
Files changed (28) hide show
  1. geo_activity_playground/alembic/script.py.mako +0 -6
  2. geo_activity_playground/alembic/versions/da2cba03b71d_add_photos.py +40 -0
  3. geo_activity_playground/alembic/versions/script.py.mako +6 -0
  4. geo_activity_playground/core/activities.py +3 -1
  5. geo_activity_playground/core/datamodel.py +48 -22
  6. geo_activity_playground/core/enrichment.py +4 -2
  7. geo_activity_playground/core/meta_search.py +78 -34
  8. geo_activity_playground/core/missing_values.py +5 -2
  9. geo_activity_playground/core/paths.py +2 -0
  10. geo_activity_playground/webui/app.py +21 -7
  11. geo_activity_playground/webui/blueprints/photo_blueprint.py +198 -0
  12. geo_activity_playground/webui/search_util.py +23 -7
  13. geo_activity_playground/webui/templates/activity/show.html.j2 +43 -10
  14. geo_activity_playground/webui/templates/eddington/distance.html.j2 +1 -2
  15. geo_activity_playground/webui/templates/eddington/elevation_gain.html.j2 +1 -2
  16. geo_activity_playground/webui/templates/elevation_eddington/index.html.j2 +18 -15
  17. geo_activity_playground/webui/templates/heatmap/index.html.j2 +1 -2
  18. geo_activity_playground/webui/templates/page.html.j2 +8 -0
  19. geo_activity_playground/webui/templates/photo/map.html.j2 +45 -0
  20. geo_activity_playground/webui/templates/photo/new.html.j2 +13 -0
  21. geo_activity_playground/webui/templates/search/index.html.j2 +1 -2
  22. geo_activity_playground/webui/templates/search_form.html.j2 +47 -22
  23. geo_activity_playground/webui/templates/summary/index.html.j2 +12 -10
  24. {geo_activity_playground-0.42.0.dist-info → geo_activity_playground-0.43.0.dist-info}/METADATA +2 -1
  25. {geo_activity_playground-0.42.0.dist-info → geo_activity_playground-0.43.0.dist-info}/RECORD +28 -24
  26. {geo_activity_playground-0.42.0.dist-info → geo_activity_playground-0.43.0.dist-info}/LICENSE +0 -0
  27. {geo_activity_playground-0.42.0.dist-info → geo_activity_playground-0.43.0.dist-info}/WHEEL +0 -0
  28. {geo_activity_playground-0.42.0.dist-info → geo_activity_playground-0.43.0.dist-info}/entry_points.txt +0 -0
@@ -1,12 +1,11 @@
1
1
  {% extends "page.html.j2" %}
2
- {% from "search_form.html.j2" import search_form %}
3
2
 
4
3
  {% block container %}
5
4
 
6
5
  <h1>Summary Statistics</h1>
7
6
 
8
7
  <div class="mb-3">
9
- {{ search_form(query, equipments_avail, kinds_avail, search_query_favorites, search_query_last, request_url) }}
8
+ {% include "search_form.html.j2" %}
10
9
  </div>
11
10
 
12
11
  {% if custom_plots %}
@@ -131,7 +130,8 @@
131
130
  </div>
132
131
 
133
132
  <p>How much elevation have you gained in each year up to that time of the year? The first plot gives you each year as
134
- one line. The second plot shows you how much elevation you have gained in each year and with which activity kinds.</p>
133
+ one line. The second plot shows you how much elevation you have gained in each year and with which activity kinds.
134
+ </p>
135
135
 
136
136
  <div class="row mb-3">
137
137
  <div class="col-md-6">
@@ -144,7 +144,8 @@
144
144
 
145
145
  <div class="row mb-3">
146
146
  <div class="col-md-4">
147
- <p>What's the average elevation gain per activity? This naturally differs per activity and perhaps also varies with
147
+ <p>What's the average elevation gain per activity? This naturally differs per activity and perhaps also varies
148
+ with
148
149
  the years. This table gives you all the mean values.</p>
149
150
  </div>
150
151
 
@@ -178,24 +179,25 @@
178
179
  </div>
179
180
  </div>
180
181
 
181
- <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 covered
182
+ <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
183
+ covered
182
184
  on that day. This makes it easy to spot those days where you really covered a lot of elevation gain!</p>
183
185
 
184
186
 
185
187
  <ul class="nav nav-pills mb-3" id="myTab" role="tablist">
186
188
  {% for year, plot in plot_elevation_gain_heatmaps.items() %}
187
189
  <li class="nav-item" role="presentation">
188
- <button class="nav-link {% if loop.last %} active {% endif %}" id="heatmap-elevation-gain-{{ year }}" data-bs-toggle="tab"
189
- data-bs-target="#heatmap-elevation-gain-{{ year }}-pane" type="button" role="tab" aria-controls="heatmap-elevation-gain-{{ year }}-pane"
190
- aria-selected="{{ loop.last }}">{{ year }}</button>
190
+ <button class="nav-link {% if loop.last %} active {% endif %}" id="heatmap-elevation-gain-{{ year }}"
191
+ data-bs-toggle="tab" data-bs-target="#heatmap-elevation-gain-{{ year }}-pane" type="button" role="tab"
192
+ aria-controls="heatmap-elevation-gain-{{ year }}-pane" aria-selected="{{ loop.last }}">{{ year }}</button>
191
193
  </li>
192
194
  {% endfor %}
193
195
  </ul>
194
196
 
195
197
  <div class="tab-content mb-3" id="myTabContent">
196
198
  {% for year, plot in plot_elevation_gain_heatmaps.items() %}
197
- <div class="tab-pane fade {% if loop.last %} show active {% endif %}" id="heatmap-elevation-gain-{{ year }}-pane" role="tabpanel"
198
- aria-labelledby="heatmap-elevation-gain-{{ year }}" tabindex="0">
199
+ <div class="tab-pane fade {% if loop.last %} show active {% endif %}" id="heatmap-elevation-gain-{{ year }}-pane"
200
+ role="tabpanel" aria-labelledby="heatmap-elevation-gain-{{ year }}" tabindex="0">
199
201
  {{ vega_direct("plot_elevation_gain_heatmap_%d"|format(year), plot) }}
200
202
  </div>
201
203
  {% endfor %}
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: geo-activity-playground
3
- Version: 0.42.0
3
+ Version: 0.43.0
4
4
  Summary: Analysis of geo data activities like rides, runs or hikes.
5
5
  License: MIT
6
6
  Author: Martin Ueding
@@ -18,6 +18,7 @@ Requires-Dist: altair (>=5.5.0,<6.0.0)
18
18
  Requires-Dist: appdirs (>=1.4.4,<2.0.0)
19
19
  Requires-Dist: charset-normalizer (>=3.3.2,<4.0.0)
20
20
  Requires-Dist: coloredlogs (>=15.0.1,<16.0.0)
21
+ Requires-Dist: exifread (>=3.2.0,<4.0.0)
21
22
  Requires-Dist: fitdecode (>=0.10.0,<0.11.0)
22
23
  Requires-Dist: flask (>=3.0.0,<4.0.0)
23
24
  Requires-Dist: flask-alembic (>=3.1.1,<4.0.0)
@@ -2,26 +2,27 @@ geo_activity_playground/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG
2
2
  geo_activity_playground/__main__.py,sha256=eL7NlKydYrzi4ikTvvKmlwkEFxx0V6CXOHOhRtazmd8,2907
3
3
  geo_activity_playground/alembic/README,sha256=MVlc9TYmr57RbhXET6QxgyCcwWP7w-vLkEsirENqiIQ,38
4
4
  geo_activity_playground/alembic/env.py,sha256=46oMzwSROaAsYuYWTd46txFdRLD3adm_SCn01A_ex8Q,2081
5
- geo_activity_playground/alembic/script.py.mako,sha256=MEqL-2qATlST9TAOeYgscMn1uy6HUS9NFvDgl93dMj8,635
5
+ geo_activity_playground/alembic/script.py.mako,sha256=g1k4U3D8y4PPYRzW3DH7GEu6yN4EiAr62GgCu6cRpBo,524
6
6
  geo_activity_playground/alembic/versions/38882503dc7c_add_tags_to_activities.py,sha256=HmvYgHlVodHB7xyigg7zHkFXSi1znWqKfOHcd6y9sZE,3157
7
7
  geo_activity_playground/alembic/versions/451e7836b53d_add_square_planner_bookmark.py,sha256=WrmlDllnJECg6cSOeS05wYCa977_SXbJUV5khDSzntw,1082
8
8
  geo_activity_playground/alembic/versions/63d3b7f6f93c_initial_version.py,sha256=YTnnENkQ8WqLz7PFof7tUWNkWcoHGkAfAM52x1N9umo,3029
9
9
  geo_activity_playground/alembic/versions/93cc82ad1b60_add_parametricplotspec.py,sha256=P9nG348kz6Wi2lD8lJ_f-0juBtlJb1tqBWYqP2XMQPE,1365
10
10
  geo_activity_playground/alembic/versions/ab83b9d23127_add_upstream_id.py,sha256=Wz02lBP2r7-09DjuQP8u8i7ypQ2SZU5RUc422-_ZBDk,851
11
11
  geo_activity_playground/alembic/versions/b03491c593f6_add_crop_indices.py,sha256=1pt7aes0PWJXZ98HxqeDK-ehaU9KLApjCmZYoqCa8V0,975
12
+ geo_activity_playground/alembic/versions/da2cba03b71d_add_photos.py,sha256=_DvUge61HsoF9LppXuavIzjAhoe1kp-dnaynxtd9h30,1394
12
13
  geo_activity_playground/alembic/versions/e02e27876deb_add_square_planner_bookmark_name.py,sha256=Y0OMxp5z_-CQ83rww6GEBFRawXu0J0pLrLArgSjJ7wQ,866
13
- geo_activity_playground/alembic/versions/script.py.mako,sha256=JADdI7OljvzEw8JTwKoIw589EZWmKBjtqdRsjnpNd_c,578
14
+ geo_activity_playground/alembic/versions/script.py.mako,sha256=3qBrHBf7F7ChKDUIdiNItiSXrDpgQdM7sR0YKzpaC50,689
14
15
  geo_activity_playground/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
15
- geo_activity_playground/core/activities.py,sha256=R3S5sLsT3Eot2P7TcR2pd35YrkICMjjV38I2v6ewzqE,4597
16
+ geo_activity_playground/core/activities.py,sha256=apP_-Rg1ub3lh7RARMGXf2BOmJTiahxqpX_soEnYF3E,4681
16
17
  geo_activity_playground/core/config.py,sha256=eGWWbNfHa6H64AHCnFYTsAJ7-pWi-PhyxL4hjZ4u03U,5256
17
18
  geo_activity_playground/core/coordinates.py,sha256=tDfr9mlXhK6E_MMIJ0vYWVCoH0Lq8uyuaqUgaa8i0jg,966
18
- geo_activity_playground/core/datamodel.py,sha256=IAjgTwUv-kfP1reep3YMyCIuo74dZjrvZt3ZQK6p19g,11823
19
- geo_activity_playground/core/enrichment.py,sha256=RYfnBZgPsgdwuIv1byMo5Hh3JJjoFiG6CDugsE9WVKk,7614
19
+ geo_activity_playground/core/datamodel.py,sha256=fBq2D9N8wjWVSSt0bLqxIOBLouRySO74mcG1Z_vsKVI,12786
20
+ geo_activity_playground/core/enrichment.py,sha256=Hs1lB__s5TwPLOWPaaheOJeJIBQFUa68NTbCI5M5wWI,7640
20
21
  geo_activity_playground/core/heart_rate.py,sha256=-S3WAhS7AOywrw_Lk5jfuo_fu6zvZQ1VtjwEKSycWpU,1542
21
- geo_activity_playground/core/meta_search.py,sha256=naErjAC7ZCFhOF6d492kbegZxCdzbpGcJvjQLJTE4xE,5016
22
- geo_activity_playground/core/missing_values.py,sha256=ByS7EVynohXga9IRlPOlyS8TY2qQ7bve9nJlA7za0KI,242
22
+ geo_activity_playground/core/meta_search.py,sha256=Ygh2uySZ9_q-oddU_2vXfzGfXV9rfTyeQFBT7sIiXCI,6657
23
+ geo_activity_playground/core/missing_values.py,sha256=STTNF3L_Zcl3v4QhWaqfPDtsxDu_YBvFjZyugb72XeA,296
23
24
  geo_activity_playground/core/parametric_plot.py,sha256=IefPc6lwthxowvjUDA5wu23oBSw9jq399l04gSaNrOQ,3880
24
- geo_activity_playground/core/paths.py,sha256=aUXGuNn9hBvGPQWPoUJeImHN0PB0fS1tja1tm2eq8mA,2595
25
+ geo_activity_playground/core/paths.py,sha256=CLQYA_6ouxHJYgrt_uGp-9sO7MG60prdD6cvVwhA_2g,2670
25
26
  geo_activity_playground/core/privacy_zones.py,sha256=4TumHsVUN1uW6RG3ArqTXDykPVipF98DCxVBe7YNdO8,512
26
27
  geo_activity_playground/core/raster_map.py,sha256=Cq8dNLdxVQg3Agzn2bmXVu0-8kZf56QrSe-LKNn3jaU,7994
27
28
  geo_activity_playground/core/similarity.py,sha256=L2de3DPRdDeDY5AxZwLDcH7FjHWRWklr41VNU06q9kQ,3117
@@ -50,7 +51,7 @@ geo_activity_playground/importers/test_csv_parser.py,sha256=nOTVTdlzIY0TDcbWp7xN
50
51
  geo_activity_playground/importers/test_directory.py,sha256=_fn_-y98ZyElbG0BRxAmGFdtGobUShPU86SdEOpuv-A,691
51
52
  geo_activity_playground/importers/test_strava_api.py,sha256=7b8bl5Rh2BctCmvTPEhCadxtUOq3mfzuadD6F5XxRio,398
52
53
  geo_activity_playground/webui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
53
- geo_activity_playground/webui/app.py,sha256=fUbKRpQh558D19cPUOHScSG-Cur61B41rVDsAtxQt-4,7281
54
+ geo_activity_playground/webui/app.py,sha256=LEKALJE-856bQE-79MVfsqGHr5G68IIyHL3cmA6eZyU,7888
54
55
  geo_activity_playground/webui/authenticator.py,sha256=jtQqvpVHa_eLTAulmvvJgDRoCWOEege49G9zn3MfYk8,1394
55
56
  geo_activity_playground/webui/blueprints/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
56
57
  geo_activity_playground/webui/blueprints/activity_blueprint.py,sha256=NDFw5v765uGpaX2kMIH09EALsZmYYLSJRkrn7bq_Wvo,25258
@@ -62,6 +63,7 @@ geo_activity_playground/webui/blueprints/entry_views.py,sha256=RK2ypZO75DhweGjoK
62
63
  geo_activity_playground/webui/blueprints/equipment_blueprint.py,sha256=juQ5L2BlrECb00LBbiY2yc0b8W_B9Y3fPwtbiaRfgpo,5634
63
64
  geo_activity_playground/webui/blueprints/explorer_blueprint.py,sha256=6w6seOCVf7Z5y4BBtgVwoZ4t8qastnm7ViX8Bs_zj2w,15566
64
65
  geo_activity_playground/webui/blueprints/heatmap_blueprint.py,sha256=iHI5YJYhX7ZOlzTgzl2efIRDzt3UMYCx7X4-LVd0MWk,8702
66
+ geo_activity_playground/webui/blueprints/photo_blueprint.py,sha256=sYGp2XVGodkAifGHbEqpIY-7bBH5R7G7Dwg4HqgxMSY,7269
65
67
  geo_activity_playground/webui/blueprints/plot_builder_blueprint.py,sha256=7HrjpBM-608HSOh0i31Lmt7yDNMfWlEn6G7DlYqlV9w,3031
66
68
  geo_activity_playground/webui/blueprints/search_blueprint.py,sha256=Sv_KL1Cdai26y51qVfI-5jZLhtElREsEar1dbR_VAC4,2275
67
69
  geo_activity_playground/webui/blueprints/settings_blueprint.py,sha256=p_17BC2ZQyPu5VSl7evc5YyQmB3-L-WxgzOTv9UJsK0,17245
@@ -72,7 +74,7 @@ geo_activity_playground/webui/blueprints/upload_blueprint.py,sha256=_VeGu08vlRZl
72
74
  geo_activity_playground/webui/columns.py,sha256=hSW8bFVKRUMBlWZYAN-tZ_tfED3VDQK75e4Zzw7_jZ0,642
73
75
  geo_activity_playground/webui/flasher.py,sha256=Covc1D9cO_jjokRWnvyiXCc2tfp3aZ8XkNqFdA1AXtk,500
74
76
  geo_activity_playground/webui/plot_util.py,sha256=5Uesjj-xcMskQX2z9viDZYHSxLGrH2a5dHA1ogsJW9U,261
75
- geo_activity_playground/webui/search_util.py,sha256=uAxnN9Tdei8IKV6Lqx4z5UIJf0_HKLd9NG9meiu5u4s,2202
77
+ geo_activity_playground/webui/search_util.py,sha256=gH2cOM1FTAozZUlSQ4C1dR1xlV-8e82pD1PPi_pPBNY,2647
76
78
  geo_activity_playground/webui/static/Leaflet.fullscreen.min.js,sha256=MMWj_yFOercjzhk8wKIIKyDCK7olXrwk_7R7TjDhGYs,3677
77
79
  geo_activity_playground/webui/static/MarkerCluster.Default.css,sha256=LWhzWaQGZRsWFrrJxg-6Zn8TT84k0_trtiHBc6qcGpY,1346
78
80
  geo_activity_playground/webui/static/MarkerCluster.css,sha256=-bdWuWOXMFkX0v9Cvr3OWClPiYefDQz9GGZP_7xZxdc,886
@@ -111,25 +113,27 @@ geo_activity_playground/webui/templates/activity/day.html.j2,sha256=CHEvxlZralCm
111
113
  geo_activity_playground/webui/templates/activity/edit.html.j2,sha256=r979JPqaZi_2ymTykxpkjdpw0D2tsB9VJaf7OaGPaME,1961
112
114
  geo_activity_playground/webui/templates/activity/lines.html.j2,sha256=_ZDg1ruW-9UMJfOudy1-uY_-IcSSaagq7tPCih5Bb8g,1079
113
115
  geo_activity_playground/webui/templates/activity/name.html.j2,sha256=7Wbh3IrVL5lMRve467H0P10Shn5FzGpaXLhV0H-X4Hk,2725
114
- geo_activity_playground/webui/templates/activity/show.html.j2,sha256=ciUMJAU56nUVbl61NiVuJ4vAr1f7dPrx2kRJzkNrE9E,9273
116
+ geo_activity_playground/webui/templates/activity/show.html.j2,sha256=FcZajTHRGpWLtV6nes2KjyhvBS5wsc_-WH8m-SCWEAA,10578
115
117
  geo_activity_playground/webui/templates/activity/trim.html.j2,sha256=3oAXQab6QqWjGBC9KCvWNOVn8uRmxoDLj3hx_O63TXc,1836
116
118
  geo_activity_playground/webui/templates/auth/index.html.j2,sha256=ILQ5HvTEYc3OrtOAIFt1VrqWorVD70V9DC342znmP70,579
117
119
  geo_activity_playground/webui/templates/bubble_chart/index.html.j2,sha256=yd7lWjtxxVmJZqCiXb0Y1gMEOQ7LQYJXEdpE7JB1OZY,1616
118
120
  geo_activity_playground/webui/templates/calendar/index.html.j2,sha256=8dV9yeDwfv0Mm81mhiPHN5r3hdPUWl1Yye03x0Rqbo8,1601
119
121
  geo_activity_playground/webui/templates/calendar/month.html.j2,sha256=IEhGqknL69okX5brMzTgZdnmrgUQLmGGkDE5zd7RG7s,2008
120
- geo_activity_playground/webui/templates/eddington/distance.html.j2,sha256=_3oxzHhC_s9ATtvGmuIWKqvjIQYJNvdCxmYnOyN9QnY,3716
121
- geo_activity_playground/webui/templates/eddington/elevation_gain.html.j2,sha256=an8eaZIMFpGwQiwVWkNhLtu6djl_NU7eTaOsBEiMUK8,4931
122
- geo_activity_playground/webui/templates/elevation_eddington/index.html.j2,sha256=pG7w3QY0yZKI322_EzDgCc1c1p5k2Xl-WqemiKa4MVY,4969
122
+ geo_activity_playground/webui/templates/eddington/distance.html.j2,sha256=TkMey-uaPWQO-wiafZtq8GPXQ0jhtXh_ADLC1Tu-iMg,3588
123
+ geo_activity_playground/webui/templates/eddington/elevation_gain.html.j2,sha256=eE-xrhtwvtAohq5VXKZmeBjab3E0R7EdmCJlNTAvFAg,4803
124
+ geo_activity_playground/webui/templates/elevation_eddington/index.html.j2,sha256=Pgis0-yH5qtSwRnJ5H_Umjk1nxk-t-LnpHIqklezPS4,4823
123
125
  geo_activity_playground/webui/templates/equipment/index.html.j2,sha256=wwrGmfCCBn-5CzMymi80hg3lNMZ7J1fAWWl_2zHeiMc,1845
124
126
  geo_activity_playground/webui/templates/explorer/index.html.j2,sha256=3t9ikAF6oMvEaVlS3Kb1tj9ngomIQlatzqPnqVsEDKA,6908
125
127
  geo_activity_playground/webui/templates/explorer/server-side.html.j2,sha256=3eYh3mmgPDmxFjH6Ofx1iw-jptcD9ctZixYh59mka3w,2496
126
- geo_activity_playground/webui/templates/heatmap/index.html.j2,sha256=kTVvEt-GmSNebDlVMa6zwyIuP0mJcZQFuqj-IY8JV5U,1359
128
+ geo_activity_playground/webui/templates/heatmap/index.html.j2,sha256=uM-l4gmDKw6307ZH_zb8zroMTKBuOkrR0Bu4fTEJE0s,1231
127
129
  geo_activity_playground/webui/templates/home.html.j2,sha256=L0wVZ6RA3mel1Wt7ZD7PbaMUEEcdO2XLDy1e1ZdRPUY,2697
128
- geo_activity_playground/webui/templates/page.html.j2,sha256=d8-wLkWPzcuvrbkAT1viTbeVyH29__TMyAoMjYmzuVs,11939
130
+ geo_activity_playground/webui/templates/page.html.j2,sha256=nwuwWfmFe7RnVmXGEYR8cu6en5gKbi2-xSyRxKQC9sc,12368
131
+ geo_activity_playground/webui/templates/photo/map.html.j2,sha256=MWhqt5Q8ExiRhgxndcEnwngOj1qw0E0u4hKuiuY24Gg,1437
132
+ geo_activity_playground/webui/templates/photo/new.html.j2,sha256=GGLejO4ap6ZMe54jZP39ktSLkdw5j67bf5PTlHEK7qc,383
129
133
  geo_activity_playground/webui/templates/plot_builder/edit.html.j2,sha256=x5Ki425me3HY6CcBQ37le9g8rCpbOxFVkdr0N_L84-g,2230
130
134
  geo_activity_playground/webui/templates/plot_builder/index.html.j2,sha256=fBuGLT2HIwlgz5eGeKXOdIDqzDSQoY99w-hyt_0JP-w,832
131
- geo_activity_playground/webui/templates/search/index.html.j2,sha256=_kxTgsdbT8o-4ryW0pvyWE7a-rOs7xzGUpdSPp8Q1is,1320
132
- geo_activity_playground/webui/templates/search_form.html.j2,sha256=TG9xIql0HnhsXtbHZxl3GLBt6cGYjA8jPeBq11syQ3A,6512
135
+ geo_activity_playground/webui/templates/search/index.html.j2,sha256=7W74ecprIWGYZ2-6xFIK_k6_mf-GRyRHNzE3ZjhWDqU,1192
136
+ geo_activity_playground/webui/templates/search_form.html.j2,sha256=QL0inDTaEHPxoQGs3EB19bD0jAMnUkOrb_r5OoQn7JU,8251
133
137
  geo_activity_playground/webui/templates/settings/admin-password.html.j2,sha256=VYwddpObD1RpeTH5Dm4y7VtmT7kwURDCIjxyzJeq08c,495
134
138
  geo_activity_playground/webui/templates/settings/color-schemes.html.j2,sha256=iR91Wxd2_TMuIo9dBDZBrWSUGHNwTwzC6O8oNH-XBt4,1653
135
139
  geo_activity_playground/webui/templates/settings/heart-rate.html.j2,sha256=UPT3MegRgSeff36lhCo0l3ZwhqNSIg5gM6h2s32GkCY,4255
@@ -145,11 +149,11 @@ geo_activity_playground/webui/templates/settings/tags-edit.html.j2,sha256=OAXg_P
145
149
  geo_activity_playground/webui/templates/settings/tags-list.html.j2,sha256=AsFhWyMejbNMvOgWhqRtAiJGK8eqkHgECZ7mKFpQWkA,366
146
150
  geo_activity_playground/webui/templates/settings/tags-new.html.j2,sha256=xi6KbwydDVrUJM4_ty4KbMa74k3QaoyZhZAn2paERnM,358
147
151
  geo_activity_playground/webui/templates/square_planner/index.html.j2,sha256=-OnY2nQCgZCslOzf28ogZwFykwF8tZm7PgFwOE3eBDk,8176
148
- geo_activity_playground/webui/templates/summary/index.html.j2,sha256=ozGuoF36RBUN56Cnc8AFFguRdu_c4dP4eAotw8aidE8,9262
152
+ geo_activity_playground/webui/templates/summary/index.html.j2,sha256=soGpTK-pD81YBlMWNWLnkWeEmVIbI5JwmGZQUN2c3DI,9151
149
153
  geo_activity_playground/webui/templates/upload/index.html.j2,sha256=I1Ix8tDS3YBdi-HdaNfjkzYXVVCjfUTe5PFTnap1ydc,775
150
154
  geo_activity_playground/webui/templates/upload/reload.html.j2,sha256=YZWX5eDeNyqKJdQAywDBcU8DZBm22rRBbZqFjrFrCvQ,556
151
- geo_activity_playground-0.42.0.dist-info/LICENSE,sha256=4RpAwKO8bPkfXH2lnpeUW0eLkNWglyG4lbrLDU_MOwY,1070
152
- geo_activity_playground-0.42.0.dist-info/METADATA,sha256=inIY4eJNLOogHUVXAvLBuBYmxc_Cp1p0FipaGN0SJq8,1809
153
- geo_activity_playground-0.42.0.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
154
- geo_activity_playground-0.42.0.dist-info/entry_points.txt,sha256=pbNlLI6IIZIp7nPYCfAtiSiz2oxJSCl7DODD6SPkLKk,81
155
- geo_activity_playground-0.42.0.dist-info/RECORD,,
155
+ geo_activity_playground-0.43.0.dist-info/LICENSE,sha256=4RpAwKO8bPkfXH2lnpeUW0eLkNWglyG4lbrLDU_MOwY,1070
156
+ geo_activity_playground-0.43.0.dist-info/METADATA,sha256=KhD9a5T2Tr9eRYK2UjvQK2wd5o-zbtBjpswTzN63RKo,1850
157
+ geo_activity_playground-0.43.0.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
158
+ geo_activity_playground-0.43.0.dist-info/entry_points.txt,sha256=pbNlLI6IIZIp7nPYCfAtiSiz2oxJSCl7DODD6SPkLKk,81
159
+ geo_activity_playground-0.43.0.dist-info/RECORD,,