A library to plot various sports fields using Matplotlib
Project description
mplsports (WIP)
A highly customizable library for plotting sports fields and courts using Matplotlib.
Work in progress! Still doesn't work yet!
Table of Contents
- Overview
- Features
- Installation
- Quick Start
- Customization
- Adding Custom Dimensions
- Roadmap
- Contributing
- License
Overview
mplsports
is a Python library designed for plotting various sports fields and courts using Matplotlib. It provides high customizability, allowing users to adjust dimensions, colors, line styles, and more. The library supports multiple sports, including soccer, basketball, tennis, handball, and volleyball, with an extensible architecture that makes it easy to add new sports.
Features
- Multiple Sports Support: Plot pitches for soccer, basketball, tennis, handball, volleyball, and more.
- High Customizability: Customize colors, line styles, dimensions, units, and padding.
- Extensible Architecture: Easily add support for additional sports.
- Standard and Custom Dimensions: Use standard dimensions or provide your own.
- Future-Proof: Designed to support both 2D and upcoming 3D plotting capabilities.
Installation
Install mplsports
using pip:
pip install mplsports
Quick Start
mplsports
provides a flexible API that accommodates various terms for sports playing areas. You can use Pitch
, Court
, Field
, Ground
, or even Thing
interchangeably to create your sports visualizations. This flexibility allows you to use terminology you're comfortable with while maintaining full access to the library's features.
from mplsports import Pitch, Court, Field, Ground, Thing
import matplotlib.pyplot as plt
# Create a 2x2 grid of subplots
fig, axs = plt.subplots(2, 2, figsize=(20, 20))
Flatten the 2D array of axes for easier indexing
axs = axs.flatten()
# soccer
soccer_pitch = Pitch(sport="soccer", axis=True, tick=True)
soccer_pitch.draw(ax=axs[0])
axs[0].set_title("Soccer Pitch")
# Basketball
basketball_court = Court(sport="basketball", axis=True, tick=True)
basketball_court.draw(ax=axs[1])
axs[1].set_title("Basketball Court")
# Tennis
tennis_court = Field(sport="tennis", axis=True, tick=True)
tennis_court.draw(ax=axs[2])
axs[2].set_title("Tennis Court")
# Handball
handball_court = Ground(sport="handball", axis=True, tick=True)
handball_court.draw(ax=axs[3])
axs[3].set_title("Handball Court")
# Adjust the layout and display the plot
plt.tight_layout()
plt.show()
Plotting a Soccer Pitch
from mplsports.pitch.soccer import SoccerPitch
import matplotlib.pyplot as plt
# Create a soccer pitch instance
pitch = SoccerPitch(
pitch_color='#a8bc95',
line_color='white',
line_alpha=0.8,
linewidth=2,
linestyle='-',
axis=True,
tick=False,
label=False
)
# Draw the pitch
ax = pitch.draw()
# Show the plot
plt.show()
Plotting Other Sports
from mplsports.pitch.basketball import BasketballCourt
# Create a basketball court instance
court = BasketballCourt(
pitch_color='#f0f0f0',
line_color='black',
linewidth=2,
half=False
)
# Draw the court
ax = court.draw()
plt.show()
Customization
mplsports
allows extensive customization through various parameters:
- Colors:
pitch_color
,line_color
- Line Styles:
linewidth
,linestyle
,line_alpha
,line_zorder
- Axis Settings:
axis
,tick
,label
- Padding:
pad_left
,pad_right
,pad_bottom
,pad_top
- Dimension Configurations: Use predefined pitch types or pass custom dimensions.
Example: Customizing a Tennis Court
from mplsports.pitch.tennis import TennisCourt
court = TennisCourt(
pitch_color='#008000',
line_color='white',
linewidth=2,
line_zorder=1,
axis=True,
tick=False,
label=False,
pad_left=2,
pad_right=2,
pad_bottom=1,
pad_top=1
)
ax = court.draw()
plt.show()
Adding Custom Dimensions
You can use custom dimensions by creating a dictionary of dimensions or providing a custom YAML file.
Using a Custom Dimensions Dictionary
custom_dimensions = {
'length': 120.0,
'width': 75.0,
'line_width': 0.12,
'penalty_area_length': 18.0,
'penalty_area_width': 44.0,
'goal_area_length': 6.0,
'goal_area_width': 20.0,
'center_circle_radius': 10.0,
'corner_arc_radius': 1.0
}
pitch = SoccerPitch(config=custom_dimensions)
ax = pitch.draw()
plt.show()
Using a Custom YAML Configuration
- Create a YAML file with your custom dimensions (e.g.,
my_custom_pitch.yaml
).
length: 120.0
width: 75.0
line_width: 0.12
penalty_area_length: 18.0
penalty_area_width: 44.0
goal_area_length: 6.0
goal_area_width: 20.0
center_circle_radius: 10.0
corner_arc_radius: 1.0
- Load the configuration and pass it to the pitch class.
import yaml
with open('my_custom_pitch.yaml', 'r') as f:
custom_config = yaml.safe_load(f)
pitch = SoccerPitch(config=custom_config)
ax = pitch.draw()
plt.show()
Roadmap
- Verify pitches for each sport:
- Soccer
- Basketball
- Tennis
- Handball
- Volleyball
- Add documentation
- Add 3D plots for each sport:
- Soccer
- Basketball
- Tennis
- Handball
- Volleyball
Contributing
Contributions are welcome! To contribute:
- Fork the repository on GitHub.
- Create a new branch for your feature or bugfix.
- Write tests for your changes.
- Submit a pull request with a detailed description.
License
This project is licensed under the MIT License. See the LICENSE file for details.
Acknowledgements
Special thanks to the community for their contributions and support. This project was heavily influenced by:
I initially struggled to plot a handball court for my research and thought it would be useful for myself and colleagues to have a simple, yet extensible version of these two repositories.
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
Built Distribution
File details
Details for the file mplsports-0.2.2.tar.gz
.
File metadata
- Download URL: mplsports-0.2.2.tar.gz
- Upload date:
- Size: 12.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.8.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1d009be79d3b82d5c40cfe72762dcc4477ef8ccd4d204cbcd282b13aa9d174b8 |
|
MD5 | 71e4e8301c595011d1a227854965a023 |
|
BLAKE2b-256 | 6388bf930ef60c8a2851e1662b298464f2d8073ab9fffd6fc101b95935a09a30 |
File details
Details for the file mplsports-0.2.2-py3-none-any.whl
.
File metadata
- Download URL: mplsports-0.2.2-py3-none-any.whl
- Upload date:
- Size: 15.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.8.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 27e0640eb3b4af045ced1b6cc8731573b77b6ffaa77743ccf72776a78fff8b71 |
|
MD5 | d7fd6aad9c2753005ae6685e02576e6f |
|
BLAKE2b-256 | ea7ba703b4dabdbd0cb1810c77779d63c1b7b5fe609c726b7d1b122ad96f2749 |