Skip to main content

A library for telemetry data analysis

Project description

Racing-Telemetry

Racing-Telemetry is a Python library for analyzing racing data, providing tools for data retrieval, processing, and visualization.

Installation

You can install the library using pip:

pip install racing-telemetry

Usage

Here are some examples of how to use the Telemetry library:

Basic Usage

from racing_telemetry import Telemetry
from racing_telemetry.plot.plots import lap_fig, plot_2d_map
from racing_telemetry.analysis.streaming import Streaming

# Initialize Telemetry
t = Telemetry()

# Set Pandas adapter for data conversion
t.set_pandas_adapter()

# Set filter for specific session and driver
t.set_filter({'session_id': 1719933663, 'driver': 'durandom'})

# Retrieve telemetry data
lap_data = t.get_telemetry_df()

# Calculate average speed
from racing_telemetry.analysis import average_speed
avg_speed = average_speed(lap_data)
print(f"Average speed: {avg_speed:.2f} m/s")

# Create a lap figure
fig = lap_fig(lap_data, columns=["SpeedMs", "Throttle", "Brake"])
fig.show()

# Create a 2D map
map_fig = plot_2d_map(lap_data)
map_fig.show()

# Use streaming analysis
streaming = Streaming()
for index, row in lap_data.iterrows():
    streaming.notify(row.to_dict())
    features = streaming.get_features()
    print(f"Lap time: {row['CurrentLapTime']:.2f}, Average speed: {features['average_speed'][-1]:.2f}, Coasting time: {features['coasting_time'][-1]:.2f}")

Features

  • Data retrieval from various sources (GraphQL, InfluxDB, PostgreSQL)
  • Data adaptation and conversion
  • Basic statistical analysis
  • Real-time streaming analysis
  • Visualization tools for lap data and track maps

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

This project is licensed under the GPL License - see the LICENSE file for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

racing_telemetry-0.1.3.tar.gz (30.1 kB view details)

Uploaded Source

Built Distribution

racing_telemetry-0.1.3-py3-none-any.whl (31.3 kB view details)

Uploaded Python 3

File details

Details for the file racing_telemetry-0.1.3.tar.gz.

File metadata

  • Download URL: racing_telemetry-0.1.3.tar.gz
  • Upload date:
  • Size: 30.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.3

File hashes

Hashes for racing_telemetry-0.1.3.tar.gz
Algorithm Hash digest
SHA256 ee2c96eb0ad91f6b414b863010dd4b36648efd4806ba3f6a4d7e82c42b907534
MD5 c3adfd96b3f2a036c62007417f176d89
BLAKE2b-256 6bb4777be4415021cdb2d68fc03b0f1b58f4552a718d8829a4548649100c1c2b

See more details on using hashes here.

File details

Details for the file racing_telemetry-0.1.3-py3-none-any.whl.

File metadata

File hashes

Hashes for racing_telemetry-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 70a6fdf9ad82a4022e4316c85ff4c26516d038ad925526bd40df4bcaac1b8c40
MD5 8979d506633828a8533726ec185a9f11
BLAKE2b-256 f3ae4d76557154b3e72fa6cea9287c1a9ea3e00b7c69f619534d5adf2fe9a7fa

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page