geo-activity-playground 0.33.3__py3-none-any.whl → 0.34.1__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/explorer/video.py +2 -1
- geo_activity_playground/importers/strava_checkout.py +8 -2
- geo_activity_playground/webui/activity/blueprint.py +7 -0
- geo_activity_playground/webui/activity/controller.py +85 -15
- geo_activity_playground/webui/activity/templates/activity/day.html.j2 +5 -1
- geo_activity_playground/webui/equipment/controller.py +1 -1
- geo_activity_playground/webui/static/Leaflet.fullscreen.min.js +1 -0
- geo_activity_playground/webui/static/MarkerCluster.Default.css +60 -0
- geo_activity_playground/webui/static/MarkerCluster.css +14 -0
- geo_activity_playground/webui/static/bootstrap.min.css +6 -0
- geo_activity_playground/webui/static/fullscreen.png +0 -0
- geo_activity_playground/webui/static/fullscreen@2x.png +0 -0
- geo_activity_playground/webui/static/leaflet.css +661 -0
- geo_activity_playground/webui/static/leaflet.fullscreen.css +40 -0
- geo_activity_playground/webui/static/leaflet.js +6 -0
- geo_activity_playground/webui/static/leaflet.markercluster.js +3 -0
- geo_activity_playground/webui/static/table-sort.min.js +8 -0
- geo_activity_playground/webui/static/vega-embed@6 +7 -0
- geo_activity_playground/webui/static/vega-lite@4 +2 -0
- geo_activity_playground/webui/static/vega@5 +2 -0
- geo_activity_playground/webui/summary/controller.py +11 -10
- geo_activity_playground/webui/templates/page.html.j2 +14 -16
- {geo_activity_playground-0.33.3.dist-info → geo_activity_playground-0.34.1.dist-info}/METADATA +5 -6
- {geo_activity_playground-0.33.3.dist-info → geo_activity_playground-0.34.1.dist-info}/RECORD +27 -13
- {geo_activity_playground-0.33.3.dist-info → geo_activity_playground-0.34.1.dist-info}/LICENSE +0 -0
- {geo_activity_playground-0.33.3.dist-info → geo_activity_playground-0.34.1.dist-info}/WHEEL +0 -0
- {geo_activity_playground-0.33.3.dist-info → geo_activity_playground-0.34.1.dist-info}/entry_points.txt +0 -0
@@ -105,6 +105,7 @@ def embellished_activities(meta: pd.DataFrame) -> pd.DataFrame:
|
|
105
105
|
df["month"] = [start.month for start in df["start"]]
|
106
106
|
df["day"] = [start.day for start in df["start"]]
|
107
107
|
df["week"] = [start.isocalendar().week for start in df["start"]]
|
108
|
+
df["iso_year"] = [start.isocalendar().year for start in df["start"]]
|
108
109
|
df["hours"] = [
|
109
110
|
elapsed_time.total_seconds() / 3600 for elapsed_time in df["elapsed_time"]
|
110
111
|
]
|
@@ -188,8 +189,8 @@ def plot_yearly_distance(year_kind_total: pd.DataFrame, kind_scale: alt.Scale) -
|
|
188
189
|
|
189
190
|
def plot_year_cumulative(df: pd.DataFrame) -> str:
|
190
191
|
year_cumulative = (
|
191
|
-
df[["
|
192
|
-
.groupby("
|
192
|
+
df[["iso_year", "week", "distance_km"]]
|
193
|
+
.groupby("iso_year")
|
193
194
|
.apply(
|
194
195
|
lambda group: pd.DataFrame(
|
195
196
|
{"week": group["week"], "distance_km": group["distance_km"].cumsum()}
|
@@ -205,10 +206,10 @@ def plot_year_cumulative(df: pd.DataFrame) -> str:
|
|
205
206
|
.encode(
|
206
207
|
alt.X("week", title="Week"),
|
207
208
|
alt.Y("distance_km", title="Distance / km"),
|
208
|
-
alt.Color("
|
209
|
+
alt.Color("iso_year:N", title="Year"),
|
209
210
|
[
|
210
211
|
alt.Tooltip("week", title="Week"),
|
211
|
-
alt.Tooltip("
|
212
|
+
alt.Tooltip("iso_year:N", title="Year"),
|
212
213
|
alt.Tooltip("distance_km", title="Distance / km"),
|
213
214
|
],
|
214
215
|
)
|
@@ -234,26 +235,26 @@ def tabulate_year_kind_mean(df: pd.DataFrame) -> pd.DataFrame:
|
|
234
235
|
|
235
236
|
def plot_weekly_distance(df: pd.DataFrame, kind_scale: alt.Scale) -> str:
|
236
237
|
week_kind_total_distance = (
|
237
|
-
df[["
|
238
|
-
.groupby(["
|
238
|
+
df[["iso_year", "week", "kind", "distance_km"]]
|
239
|
+
.groupby(["iso_year", "week", "kind"])
|
239
240
|
.sum()
|
240
241
|
.reset_index()
|
241
242
|
)
|
242
243
|
week_kind_total_distance["year_week"] = [
|
243
244
|
f"{year}-{week:02d}"
|
244
245
|
for year, week in zip(
|
245
|
-
week_kind_total_distance["
|
246
|
+
week_kind_total_distance["iso_year"], week_kind_total_distance["week"]
|
246
247
|
)
|
247
248
|
]
|
248
249
|
|
249
|
-
last_year = week_kind_total_distance["
|
250
|
+
last_year = week_kind_total_distance["iso_year"].iloc[-1]
|
250
251
|
last_week = week_kind_total_distance["week"].iloc[-1]
|
251
252
|
|
252
253
|
return (
|
253
254
|
alt.Chart(
|
254
255
|
week_kind_total_distance.loc[
|
255
|
-
(week_kind_total_distance["
|
256
|
-
| (week_kind_total_distance["
|
256
|
+
(week_kind_total_distance["iso_year"] == last_year)
|
257
|
+
| (week_kind_total_distance["iso_year"] == last_year - 1)
|
257
258
|
& (week_kind_total_distance["week"] >= last_week)
|
258
259
|
],
|
259
260
|
title="Weekly Distance",
|
@@ -8,33 +8,31 @@
|
|
8
8
|
<title>Geo Activity Playground</title>
|
9
9
|
|
10
10
|
<!-- Bootstrap CSS. -->
|
11
|
-
<link href="
|
11
|
+
<link href="/static/bootstrap.min.css" rel="stylesheet"
|
12
12
|
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
|
13
13
|
|
14
14
|
<!-- Leaflet for interactive maps. -->
|
15
|
-
<link rel="stylesheet" href="
|
16
|
-
|
17
|
-
<script src="
|
18
|
-
|
15
|
+
<link rel="stylesheet" href="/static/leaflet.css" integrity="sha256-p4NxAoJBhIIN+hmNHrzRCf9tD/miZyoHS5obTRR9BMY="
|
16
|
+
crossorigin="" />
|
17
|
+
<script src="/static/leaflet.js" integrity="sha256-20nQCchB9co0qIjJZRGuk2/Z9VM+kNiyxNV1lvTlZBo="
|
18
|
+
crossorigin=""></script>
|
19
19
|
|
20
20
|
<!-- Fullscreen button for Leaflet. -->
|
21
|
-
<link href='
|
22
|
-
|
23
|
-
<script src='https://api.mapbox.com/mapbox.js/plugins/leaflet-fullscreen/v1.0.1/Leaflet.fullscreen.min.js'></script>
|
21
|
+
<link href='/static/leaflet.fullscreen.css' rel='stylesheet' />
|
22
|
+
<script src='/static/Leaflet.fullscreen.min.js'></script>
|
24
23
|
|
25
|
-
<link rel="stylesheet" href="
|
26
|
-
<link rel="stylesheet" href="
|
27
|
-
|
28
|
-
<script src="https://unpkg.com/leaflet.markercluster@1.4.1/dist/leaflet.markercluster.js"></script>
|
24
|
+
<link rel="stylesheet" href="/static/MarkerCluster.css" crossorigin="" />
|
25
|
+
<link rel="stylesheet" href="/static/MarkerCluster.Default.css" crossorigin="" />
|
26
|
+
<script src="/static/leaflet.markercluster.js"></script>
|
29
27
|
|
30
28
|
<!-- Vega for plots.-->
|
31
|
-
<script src="
|
32
|
-
<script src="
|
33
|
-
<script src="
|
29
|
+
<script src="/static/vega@5"></script>
|
30
|
+
<script src="/static/vega-lite@4"></script>
|
31
|
+
<script src="/static/vega-embed@6"></script>
|
34
32
|
|
35
33
|
<script src="/static/bootstrap-dark-mode.js"></script>
|
36
34
|
|
37
|
-
<script src="
|
35
|
+
<script src="/static/table-sort.min.js"></script>
|
38
36
|
|
39
37
|
<!-- Favicon. -->
|
40
38
|
<link rel="apple-touch-icon" sizes="180x180" href="/static/apple-touch-icon.png">
|
{geo_activity_playground-0.33.3.dist-info → geo_activity_playground-0.34.1.dist-info}/METADATA
RENAMED
@@ -1,17 +1,17 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: geo-activity-playground
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.34.1
|
4
4
|
Summary: Analysis of geo data activities like rides, runs or hikes.
|
5
5
|
License: MIT
|
6
6
|
Author: Martin Ueding
|
7
7
|
Author-email: mu@martin-ueding.de
|
8
|
-
Requires-Python: >=3.10,<3.
|
8
|
+
Requires-Python: >=3.10,<3.14
|
9
9
|
Classifier: License :: OSI Approved :: MIT License
|
10
10
|
Classifier: Programming Language :: Python :: 3
|
11
11
|
Classifier: Programming Language :: Python :: 3.10
|
12
12
|
Classifier: Programming Language :: Python :: 3.11
|
13
13
|
Classifier: Programming Language :: Python :: 3.12
|
14
|
-
Requires-Dist: Pillow (>=
|
14
|
+
Requires-Dist: Pillow (>=11.0.0,<12.0.0)
|
15
15
|
Requires-Dist: altair (>=5.1.2,<6.0.0)
|
16
16
|
Requires-Dist: appdirs (>=1.4.4,<2.0.0)
|
17
17
|
Requires-Dist: charset-normalizer (>=3.3.2,<4.0.0)
|
@@ -22,12 +22,11 @@ Requires-Dist: geojson (>=3.0.1,<4.0.0)
|
|
22
22
|
Requires-Dist: gpxpy (>=1.5.0,<2.0.0)
|
23
23
|
Requires-Dist: jinja2 (>=3.1.2,<4.0.0)
|
24
24
|
Requires-Dist: matplotlib (>=3.6.3,<4.0.0)
|
25
|
-
Requires-Dist: numpy (>=1.
|
25
|
+
Requires-Dist: numpy (>=2.1.3,<3.0.0)
|
26
26
|
Requires-Dist: pandas (>=2.2,<3.0)
|
27
|
-
Requires-Dist: pyarrow (>=
|
27
|
+
Requires-Dist: pyarrow (>=18.1.0,<19.0.0)
|
28
28
|
Requires-Dist: python-dateutil (>=2.8.2,<3.0.0)
|
29
29
|
Requires-Dist: requests (>=2.28.1,<3.0.0)
|
30
|
-
Requires-Dist: scipy (>=1.8.1,<2.0.0)
|
31
30
|
Requires-Dist: shapely (>=2.0.5,<3.0.0)
|
32
31
|
Requires-Dist: stravalib (>=2.0,<3.0)
|
33
32
|
Requires-Dist: tcxreader (>=0.4.5,<0.5.0)
|
{geo_activity_playground-0.33.3.dist-info → geo_activity_playground-0.34.1.dist-info}/RECORD
RENAMED
@@ -18,21 +18,21 @@ geo_activity_playground/core/time_conversion.py,sha256=x5mXG6Y4GtdX7CBmwucGNSWBp
|
|
18
18
|
geo_activity_playground/explorer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
19
19
|
geo_activity_playground/explorer/grid_file.py,sha256=k6j6KBEk2a2BY-onE8SV5TJsERGGyOrlY4as__meWpA,3304
|
20
20
|
geo_activity_playground/explorer/tile_visits.py,sha256=CSHAjgzKWe1iB-zvaqgsR5Z_lFycpWqUfxnPCAWvYaU,14173
|
21
|
-
geo_activity_playground/explorer/video.py,sha256=
|
21
|
+
geo_activity_playground/explorer/video.py,sha256=35-mMEvD8phnc2xbWdwCHhl_uMIUogHrnFwrTfk2Yj8,4392
|
22
22
|
geo_activity_playground/importers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
23
23
|
geo_activity_playground/importers/activity_parsers.py,sha256=XNQs0ziqAcVqIoiLAX5Ndmhb6v__29XdjUPvNvc7oBI,11082
|
24
24
|
geo_activity_playground/importers/csv_parser.py,sha256=O1pP5GLhWhnWcy2Lsrr9g17Zspuibpt-GtZ3ZS5eZF4,2143
|
25
25
|
geo_activity_playground/importers/directory.py,sha256=CA-vFOMm8G4MSM_Q09OwQKduCApL2PWaxLTVxgw_xpw,5908
|
26
26
|
geo_activity_playground/importers/strava_api.py,sha256=cJCZsLemhOlxTtZh0z_npidgae9SD5HyEUry2uvem_A,7775
|
27
|
-
geo_activity_playground/importers/strava_checkout.py,sha256=
|
27
|
+
geo_activity_playground/importers/strava_checkout.py,sha256=dAKW1wVqlA5zRw25SvpYZZrEikJtaUluInyhJ0RfsFc,10002
|
28
28
|
geo_activity_playground/importers/test_csv_parser.py,sha256=LXqva7GuSAfXYE2zZQrg-69lCtfy5MxLSq6BRwL_VyI,1191
|
29
29
|
geo_activity_playground/importers/test_directory.py,sha256=ljXokx7q0OgtHvEdHftcQYEmZJUDVv3OOF5opklxdT4,724
|
30
30
|
geo_activity_playground/importers/test_strava_api.py,sha256=4vX7wDr1a9aRh8myxNrIq6RwDBbP8ZeoXXPc10CAbW4,431
|
31
31
|
geo_activity_playground/webui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
32
32
|
geo_activity_playground/webui/activity/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
33
|
-
geo_activity_playground/webui/activity/blueprint.py,sha256=
|
34
|
-
geo_activity_playground/webui/activity/controller.py,sha256=
|
35
|
-
geo_activity_playground/webui/activity/templates/activity/day.html.j2,sha256=
|
33
|
+
geo_activity_playground/webui/activity/blueprint.py,sha256=2Fa_6a86Aa3Yr3hQdkRylQqqVusyyVzPd1x3il5ZXNk,4176
|
34
|
+
geo_activity_playground/webui/activity/controller.py,sha256=0HXQZAD9Muf62jV-GqQKJPq5qNgdbV-KEcPmHX_8iGo,21429
|
35
|
+
geo_activity_playground/webui/activity/templates/activity/day.html.j2,sha256=wkYmcnIsMlvE9wgKemYCNU6jwsk5IJvg8pcBA2OMh00,2795
|
36
36
|
geo_activity_playground/webui/activity/templates/activity/edit.html.j2,sha256=ckcTTxcQOhmvvAGNTEOtWCUG4LhvO4HfQImlIa5qKs8,1530
|
37
37
|
geo_activity_playground/webui/activity/templates/activity/lines.html.j2,sha256=_ZDg1ruW-9UMJfOudy1-uY_-IcSSaagq7tPCih5Bb8g,1079
|
38
38
|
geo_activity_playground/webui/activity/templates/activity/name.html.j2,sha256=tKviMqMouHEGv3xBQVIsJgwj_hjwAsmGVefM3UMqlYg,2437
|
@@ -53,7 +53,7 @@ geo_activity_playground/webui/eddington/templates/eddington/index.html.j2,sha256
|
|
53
53
|
geo_activity_playground/webui/entry_controller.py,sha256=McxbyouKWHJ3a2R9agPazZoG7VHiFO1RvnkBr08dMH8,2168
|
54
54
|
geo_activity_playground/webui/equipment/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
55
55
|
geo_activity_playground/webui/equipment/blueprint.py,sha256=_NIhRJuJNbXpEd_nEPo01AqnUqPgo1vawFn7E3yoeng,636
|
56
|
-
geo_activity_playground/webui/equipment/controller.py,sha256=
|
56
|
+
geo_activity_playground/webui/equipment/controller.py,sha256=lMivui3EBUnkYZf9Lgv1kHZ0c7IxRAza-ox8YOz3ONY,4079
|
57
57
|
geo_activity_playground/webui/equipment/templates/equipment/index.html.j2,sha256=fvRaDbCuiSZ8AzJTpu1dk8FTAGZ2yfsLhprtVYHFZWo,1802
|
58
58
|
geo_activity_playground/webui/explorer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
59
59
|
geo_activity_playground/webui/explorer/blueprint.py,sha256=EKnBs8llqT6Wy1uac18dF2epp3TebF9p3iGlSbj6Vl0,2337
|
@@ -84,34 +84,48 @@ geo_activity_playground/webui/square_planner/__init__.py,sha256=47DEQpj8HBSa-_TI
|
|
84
84
|
geo_activity_playground/webui/square_planner/blueprint.py,sha256=r2VkSM547chX85g6c1BQ8NC-tkdqGdYp-2ZALBiiDTc,1320
|
85
85
|
geo_activity_playground/webui/square_planner/controller.py,sha256=ML6ftOyr3tTh7D4DBcRP76CvkyTxqI5QWgMeG9wC8FE,3561
|
86
86
|
geo_activity_playground/webui/square_planner/templates/square_planner/index.html.j2,sha256=xFbYBQtkOl3U4WGkvIuU_5uazGHn8ObvQfNgPGq0Gqg,6469
|
87
|
+
geo_activity_playground/webui/static/Leaflet.fullscreen.min.js,sha256=MMWj_yFOercjzhk8wKIIKyDCK7olXrwk_7R7TjDhGYs,3677
|
88
|
+
geo_activity_playground/webui/static/MarkerCluster.Default.css,sha256=LWhzWaQGZRsWFrrJxg-6Zn8TT84k0_trtiHBc6qcGpY,1346
|
89
|
+
geo_activity_playground/webui/static/MarkerCluster.css,sha256=-bdWuWOXMFkX0v9Cvr3OWClPiYefDQz9GGZP_7xZxdc,886
|
87
90
|
geo_activity_playground/webui/static/android-chrome-192x192.png,sha256=yxZgo8Jw4hrgOgrn3tvi9G0AXWGFD29kjCuxC07WoT4,17610
|
88
91
|
geo_activity_playground/webui/static/android-chrome-512x512.png,sha256=Uiv62gQpUjMOdp9d6exzd6IyOi5zgQdgjIVVWYw5m98,38891
|
89
92
|
geo_activity_playground/webui/static/apple-touch-icon.png,sha256=TNLa0YIS1mbWajvIQthC2bGve6ET3DbJzrAbs6Pf3Ps,13046
|
90
93
|
geo_activity_playground/webui/static/bootstrap-dark-mode.js,sha256=XfyhxIFgjDc6aEj0kYgKpG5zjS5gvyhWCJmNfUG4HJY,2622
|
94
|
+
geo_activity_playground/webui/static/bootstrap.min.css,sha256=MBffSnbbXwHCuZtgPYiwMQbfE7z-GOZ7fBPCNB06Z98,232948
|
91
95
|
geo_activity_playground/webui/static/browserconfig.xml,sha256=u5EvU6U1jKSDiXHW0i4rXrs0lT_tmS82otbJnvmccrk,253
|
92
96
|
geo_activity_playground/webui/static/favicon-16x16.png,sha256=Yy8lRjGB7itDaeUI_l_Toq3OO0gzgPGnqIfM3CqcQy0,1419
|
93
97
|
geo_activity_playground/webui/static/favicon-32x32.png,sha256=K52R99pLGgWHnjFPPkVieBm051Er-sTCiMvgLr9Alrg,2587
|
94
98
|
geo_activity_playground/webui/static/favicon-48x48.png,sha256=NIIuC1OV1umv2pETJH2yDUZhhzJDk0TERsbwA5tQM9A,2008
|
95
99
|
geo_activity_playground/webui/static/favicon.ico,sha256=zAkbToeh1fq8rh6osWyEjr-cgdX-ec5viI0vPAwLn7A,15086
|
96
100
|
geo_activity_playground/webui/static/favicon.svg,sha256=gwESIDvoxOpg3tHvbiAc-wVEM4fY0pFzWnX_guQcv1c,52247
|
101
|
+
geo_activity_playground/webui/static/fullscreen.png,sha256=yDtz-dhjuAoo6q9xc00-_XNTrGwEWrN80pOneFdol4g,299
|
102
|
+
geo_activity_playground/webui/static/fullscreen@2x.png,sha256=HVi2guZO6sekf2NggilbzjUTvJDweXpSMBS81fhtnX0,420
|
103
|
+
geo_activity_playground/webui/static/leaflet.css,sha256=p4NxAoJBhIIN-hmNHrzRCf9tD_miZyoHS5obTRR9BMY,14806
|
104
|
+
geo_activity_playground/webui/static/leaflet.fullscreen.css,sha256=YTbhDGEH5amI_JfotPMN7IByFpsN9e4tCBnv5oNdvHU,994
|
105
|
+
geo_activity_playground/webui/static/leaflet.js,sha256=20nQCchB9co0qIjJZRGuk2_Z9VM-kNiyxNV1lvTlZBo,147552
|
106
|
+
geo_activity_playground/webui/static/leaflet.markercluster.js,sha256=WL6HHfYfbFEkZOFdsJQeY7lJG_E5airjvqbznghUzRw,33724
|
97
107
|
geo_activity_playground/webui/static/mstile-150x150.png,sha256=j1ANUQJ1Xi1DR2sGqYZztob2ypfGw04eNtGpN9SxExA,11964
|
98
108
|
geo_activity_playground/webui/static/site.webmanifest,sha256=G5wl5Ahfz6wyDt-Z7ea-ywG1WS1S7ZQ_QX9TM2ox6Lk,450
|
109
|
+
geo_activity_playground/webui/static/table-sort.min.js,sha256=sFeDrgkXTePr2ciJU9_mLh-Z8qtYhPIQMgOZtj0LwBY,8506
|
110
|
+
geo_activity_playground/webui/static/vega-embed@6,sha256=EtAqz74-xZ75o33UgiouBOKWG1u7Zxu-Zh0iIXFbmdo,60630
|
111
|
+
geo_activity_playground/webui/static/vega-lite@4,sha256=roXmcY9bUF91uB9V-eSEUHEgfwoXe6B1xoDPuIe5ou8,267999
|
112
|
+
geo_activity_playground/webui/static/vega@5,sha256=5DLHUaY2P0ph2mKSDMfX69E88J2ClJ-PSGJI-Acdw84,514536
|
99
113
|
geo_activity_playground/webui/static/web-app-manifest-192x192.png,sha256=eEImN6iWfSv-EnSNPL5WbX84PKakse_8VZMBPWWye3o,13582
|
100
114
|
geo_activity_playground/webui/static/web-app-manifest-512x512.png,sha256=vU9oQ4HnQerFDZVzcAT9twj4_Doc6_9v9wVvoRI-f_E,48318
|
101
115
|
geo_activity_playground/webui/summary/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
102
116
|
geo_activity_playground/webui/summary/blueprint.py,sha256=tfA2aPF19yKwkQOb5lPQBySoQYYhTn49Iuh0SYvsGP8,593
|
103
|
-
geo_activity_playground/webui/summary/controller.py,sha256=
|
117
|
+
geo_activity_playground/webui/summary/controller.py,sha256=FyPdC98maX0P5sJ4j5Z7-ZSiirLh_jmu_PszKXqTV8A,9425
|
104
118
|
geo_activity_playground/webui/summary/templates/summary/index.html.j2,sha256=ctOx3Qjx6nRDpUtFf1DlJhK_gtU77Vwx_S6euLz9-W4,5183
|
105
119
|
geo_activity_playground/webui/templates/home.html.j2,sha256=IdCqI_LLcYrpUjjCO-tbXR4s05XYrPOateiJ4idF3bo,2202
|
106
|
-
geo_activity_playground/webui/templates/page.html.j2,sha256=
|
120
|
+
geo_activity_playground/webui/templates/page.html.j2,sha256=kAZaE9MwS0znjLXwqpfRXo75LOR799j8RSICPIAsCkg,10669
|
107
121
|
geo_activity_playground/webui/templates/upload/index.html.j2,sha256=I1Ix8tDS3YBdi-HdaNfjkzYXVVCjfUTe5PFTnap1ydc,775
|
108
122
|
geo_activity_playground/webui/templates/upload/reload.html.j2,sha256=YZWX5eDeNyqKJdQAywDBcU8DZBm22rRBbZqFjrFrCvQ,556
|
109
123
|
geo_activity_playground/webui/tile/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
110
124
|
geo_activity_playground/webui/tile/blueprint.py,sha256=q0sw_F8L367Df01yjZijikEIglFBgg9lN61sbTAEOKQ,1018
|
111
125
|
geo_activity_playground/webui/tile/controller.py,sha256=XjUTbyAMeQET1D3mFtT8r5-xMcMOaELPZWtQ1Xp7Cuw,1428
|
112
126
|
geo_activity_playground/webui/upload_blueprint.py,sha256=topLI9ytDUFkqCc9AlOqDkjhABUwnPJ1tX_7XrBPbxc,4412
|
113
|
-
geo_activity_playground-0.
|
114
|
-
geo_activity_playground-0.
|
115
|
-
geo_activity_playground-0.
|
116
|
-
geo_activity_playground-0.
|
117
|
-
geo_activity_playground-0.
|
127
|
+
geo_activity_playground-0.34.1.dist-info/LICENSE,sha256=4RpAwKO8bPkfXH2lnpeUW0eLkNWglyG4lbrLDU_MOwY,1070
|
128
|
+
geo_activity_playground-0.34.1.dist-info/METADATA,sha256=LC0PRFwXYo3m0M9fCW6O13ZbiuDqpQeodnxiUxTiaWU,1573
|
129
|
+
geo_activity_playground-0.34.1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
130
|
+
geo_activity_playground-0.34.1.dist-info/entry_points.txt,sha256=pbNlLI6IIZIp7nPYCfAtiSiz2oxJSCl7DODD6SPkLKk,81
|
131
|
+
geo_activity_playground-0.34.1.dist-info/RECORD,,
|
{geo_activity_playground-0.33.3.dist-info → geo_activity_playground-0.34.1.dist-info}/LICENSE
RENAMED
File without changes
|
File without changes
|
File without changes
|