Skip to content

Commit

Permalink
Merge pull request #18 from tsteven4/work
Browse files Browse the repository at this point in the history
mark event start and end on map.
  • Loading branch information
tsteven4 authored Aug 1, 2023
2 parents 69edb24 + 7c78780 commit 3b940cd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ You can download a python .whl file to install fit-analysis from [github](https:

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.) :
```
pip3 install --upgrade fit_analysis-0.0.2-py3-none-any.whl
pip3 install --upgrade fit_analysis-0.0.10-py3-none-any.whl
```

### Windows
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "fit_analysis"
version = "0.0.9"
version = "0.0.10"
authors = [
{ name="Steven Trabert" },
]
Expand Down
2 changes: 2 additions & 0 deletions src/fit_analysis/analyze_hrv.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,8 @@ class DecodeState:

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

0 comments on commit 3b940cd

Please sign in to comment.