Skip to content

Commit 3b940cd

Browse files
authored
Merge pull request #18 from tsteven4/work
mark event start and end on map.
2 parents 69edb24 + 7c78780 commit 3b940cd

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ You can download a python .whl file to install fit-analysis from [github](https:
5050

5151
You can install the .whl file with pip3. Substitute the actual name of the .whl file you downloaded. For example, from a command prompt (DOS, powershell, bash, etc.) :
5252
```
53-
pip3 install --upgrade fit_analysis-0.0.2-py3-none-any.whl
53+
pip3 install --upgrade fit_analysis-0.0.10-py3-none-any.whl
5454
```
5555

5656
### Windows

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "fit_analysis"
7-
version = "0.0.9"
7+
version = "0.0.10"
88
authors = [
99
{ name="Steven Trabert" },
1010
]

src/fit_analysis/analyze_hrv.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,8 @@ class DecodeState:
190190

191191
if genmap:
192192
folium.PolyLine(cleanll(subset[:, [1, 2]]), color="red").add_to(eventmap)
193+
folium.Circle(subset[0, [1, 2]], color="red", fill=True, radius=10).add_to(eventmap)
194+
folium.Circle(subset[-1, [1, 2]], color="green", fill=True, radius=10).add_to(eventmap)
193195
fig, ax = plt.subplots(figsize=(10, 10), layout="constrained")
194196
ax.scatter(x, y)
195197
ax.plot(x, y, alpha=0.1)

0 commit comments

Comments
 (0)