Convert your komoot hiking/cycling trips to audio signals.
- repository: https://github.com/benmaier/komoog/
- documentation: http://komoog.readthedocs.io/
from komoog.komoot import download_all_komoot_tours, choose_downloaded_komoot_tour
from komoog.audio import convert_tour_to_audio, play_audio
download_all_komoot_tours()
tour = choose_downloaded_komoot_tour()
audio, sampling_rate = convert_tour_to_audio(tour,
approximate_length_in_seconds=4,
set_tune_to_follow_tour_profile=True,
)
play_audio(audio, sampling_rate)
After hiking I noticed that komoot comes with elevation profiles of tour hiking trips:
This reminded me of wave tables I know from sound synthesis. Because I'm always looking for sounds to use when making music, I decided to write code that generates sounds from hiking profiles that can be used in sound synthesis.
Note that I adapted code from js-on/medium_komoot to access trips on komoot.
00_constant.wav.mp4
00_profile.wav.mp4
01_constant.wav.mp4
01_profile.wav.mp4
02_constant.wav.mp4
02_profile.wav.mp4
03_constant.wav.mp4
03_profile.wav.mp4
04_constant.wav.mp4
04_profile.wav.mp4
pip install komoog
komoog
was developed and tested for
- Python 3.6
- Python 3.7
- Python 3.8
So far, the package's functionality was tested on macOS only.
Save your komoot credentials in ~/.komoog/komoot.json
as
{
"email" : "your@email.com",
"password" : "yourpassword",
"clientid" : "yourclientid"
}
You can find your client id in the komoot url when you log in. Click on your username, then on "Planned Tours" or "Completed Tours". The URL will change to something like
https://www.komoot.com/user/1851102841208/tours?type=planned
Here, 1851102841208
is your clientid
.
komoog
directly depends on the following packages which will be installed by pip
during the installation process
numpy>=1.17
scipy>=1.5.0
gpxpy>=1.4.2
simplejson>=3.17.2
simpleaudio=>=1.0.4
matplotlib>=3.0.0
The full documentation is available at komoog.readthedocs.io.
Changes are logged in a separate file.
This project is licensed under the MIT License. Note that this excludes any images/pictures/figures shown here or in the documentation.
If you want to contribute to this project, please make sure to read the code of conduct and the contributing guidelines. In case you're wondering about what to contribute, we're always collecting ideas of what we want to implement next in the outlook notes.
Fork this repository, clone it, and install it in dev mode.
git clone git@github.com:YOURUSERNAME/komoog.git
make
If you want to upload to PyPI, first convert the new README.md
to README.rst
make readme
It will give you warnings about bad .rst
-syntax. Fix those errors in README.rst
. Then wrap the whole thing
make pypi
It will probably give you more warnings about .rst
-syntax. Fix those until the warnings disappear. Then do
make upload