Skip to content

Aggregate and visualize OneWheel ride data with Python. Filter and plot rides based on location, enhance your OneWheel experience. Enjoy life.

Notifications You must be signed in to change notification settings

jordanmalecki/onemap

Repository files navigation

OneMap OneWheel Ride Aggregator

This project is designed to aggregate and visualize a user's OneWheel app rides based on a user-specified location.

NOTE: Recorded ride must be set to "public" within the OneWheel app in order to be captured and included in the aggregation.

How?

1. Fetching General Ride Data:

The program starts by retrieving general ride details from the endpoint: https://app.onewheel.com/wp-json/fm/v2/trails

2. User Input:

Initial Run:

  • If ONEMAP_LOCATION, ONEMAP_MAX_DISTANCE, or ONEMAP_NICKNAME are not set in config.json, the user is prompted to provide:

    • A location (e.g., 'Buffalo, NY')

    • Maximum search distance in miles

    • OneWheel app nickname (as displayed on leaderboards)

      Example Inputs

  • These inputs are then saved to config.json for future runs.

Subsequent Runs:

  • The application uses the values stored in config.json without prompting the user.

3. Filtering Rides:

With the user input, the program filters rides based on the provided location using the haversine_distance function. This function calculates the distance between two latitude and longitude points and helps identify rides within the specified radius.

4. Augmenting Ride Data:

Before diving into the augmentation process, it's important to note that the trail and localized filter data fetched initially will include ALL rides in the specified area. The program then individually checks each ride to determine if the user matches the provided input. Due to this, if a large area is specified, the process can be time-consuming.

For each filtered ride with an ID greater than the highest existing ID in user_rides.json:

This data is saved locally for further processing.

5. Visualization:

After aggregating ride data, the folium library is utilized to plot the rides on a dark-themed map. Each ride is represented as a path.

Example Map

drawing

To view and explore the aggregated map:

  1. Navigate to the local path where rides_map_dark.html is saved.
  2. Open rides_map_dark.html in your preferred web browser.

6. Stats:

Ride stats are visualized using the combined plot_stats.py and one_stat.py functionalities integrated into the main process.

When you run the main script (run.py), it will:

  • Generate individual statistical plot images in the out directory.
  • Combine these individual plots into a single comprehensive combined_plots.png file in the out directory.

Example stats:

drawing

Prerequisites

  • Python 3.x
  • Required Python packages: requests, folium, geopy, matplotlib, seaborn, pandas, Pillow, calmap, setuptools

Setup

  1. Clone the repository:

    git clone https://github.com/jordanmalecki/onemap.git
  2. Set up a virtual environment:

    Navigate to the project directory and create a virtual environment:

    python -m venv .venv

    Activate the virtual environment:

    • On Windows:
      .\.venv\Scripts\activate
    • On macOS and Linux:
      source .venv/bin/activate
  3. Install required packages:

    pip install -r requirements.txt

Configuration:

  1. Initial Configuration:

    The config.json file, which stores configuration details, is not included in the repository and will be automatically generated on the first run of the application.

    • If config.json contains placeholder values or does not exist, you will be prompted to enter the following details:

      • Location: Your location (e.g., 'Buffalo, NY')
      • Maximum Distance: The maximum distance in miles you'd like to search for rides.
      • Nickname: Your OneWheel app nickname (display name on leaderboards).

      These inputs will be saved to config.json for future runs, eliminating the need for repeated input.

    • You can also manually create and set up config.json with the following structure:

      {
        "ONEMAP_LOCATION": "Your_Location_Here",
        "ONEMAP_MAX_DISTANCE": 10.0,
        "ONEMAP_NICKNAME": "Your_Nickname_Here"
      }

      Replace "Your_Location_Here", 10.0, and "Your_Nickname_Here" with your actual location, preferred distance in miles, and OneWheel nickname respectively.

  2. Rename config_example.py to config.py:

    mv config_example.py config.py
  3. Update config.py with the necessary headers and cookies:

    These can be obtained by inspecting the network requests made while browsing public rides.

    • Open the OneWheel browser app.
    • Right-click and select 'Inspect' or press Ctrl+Shift+I (or Cmd+Option+I on Mac).
    • Navigate to the 'Network' tab.
    • Refresh the page or interact with the website or perform actions that trigger the relevant requests (e.g., viewing ride details).
    • Filter the requests to locate the specific endpoints used in this project, such as https://app.onewheel.com/wp-json/fm/v2/trails and related endpoints (e.g., filtering by "v2" would work).
    • Once you identify a relevant request, click on it and copy the 'Request Headers' and 'Cookies' to use in the config.py file.

Usage

Navigate to the project directory (ensure your virtual environment is activated) and execute:

python run.py

This command will fetch, filter, augment, and visualize your OneWheel ride data, and generate both an interactive map and a comprehensive statistical dashboard in the out directory.

Detailed Functionality

  1. Fetching Trail Data: The application connects to the OneWheel app's API to retrieve trail data and saves it to data/trails.json.

  2. Filtering Rides: It filters the fetched trail data to identify rides within the specified distance from your location, using a Haversine distance calculation. The results are saved to data/filtered_rides.json.

  3. Augmenting Ride Data: The filtered rides are then augmented with detailed coordinates and additional ride information, if available. This augmented data is stored in data/user_rides.json and data/coordinates.json.

  4. Visualizing Data: The application generates several visualizations:

    • Ride Maps: Visual representations of rides plotted on a map.
    • Statistics: Various statistical charts and graphs related to the rides.

Contributing

Pull requests are welcome. For significant changes, please open an issue first to discuss.

License

MIT