Static map generator with points plots.
Project description
Traceplot
Traceplot is a library to generate static maps. You can download background maps from mapping services (Google Maps, Mapbox, OSM, ...) and plot your points on top. You can add markers, title, elevation graphs and more.
Installation
Traceplot is available on Pypi:
# Using uv
uv add traceplot
# Using pip
pip install traceplot
Usage
See more code in examples folder for loading points from GPX.
from traceplot.Trace import Trace
from traceplot.types import PointGeo
from traceplot.BackgroundImage import BackgroundImage
points_geo_manual: list[PointGeo] = [
PointGeo(2.282259089265323, 48.88677456721743, 50),
PointGeo(2.2746338, 48.8589385, 52),
PointGeo(2.3850533122051463, 48.82797239213328, 60),
]
t: Trace = Trace(points_geo=points_geo_manual)
t.addBackgroundImage(
background_img=BackgroundImage(
bbox=(2.117, 48.704, 2.557, 48.994), image_path="out/background_paris.png"
)
)
t.addMarker(
points_geo[0],
img_path="img/marker_start.png",
label_text="Start",
marker_scale=0.5,
label_offset_x=0.05,
)
t.addElevationGraph(height_pct=0.17, backgroundColor="white", backgroundColorAlpha=0.6)
t.plotPoints()
t.addTitle("Around Paris", center_x=0.5, center_y=0.2, fontsize=30)
t.save("out/day_one.png")
t.show()
t.close()
Maps providers
Current implemented maps providers are:
- [done] Google Maps Static API
- [todo] Mapbox
- [todo] OSM
- [todo] Geoapify
Developpement
Here are some useful commands for developpement:
# Run tests
make test
# Run lint
make lint
# Format code
make format
# Type checking
make mypy
# Get coverage
make coverage
These commands are available in Makefile.
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file traceplot-1.0.0.tar.gz.
File metadata
- Download URL: traceplot-1.0.0.tar.gz
- Upload date:
- Size: 72.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9b1020eb7d8fda8509f99dab7fbdcf06ab8f019799b9f2ee8d63ab1c7eba60ee
|
|
| MD5 |
6217ee6d65dbe350af87108b5965f413
|
|
| BLAKE2b-256 |
72b160173b4b989141f1136bcbf2f470375a0bf1126c456e12ed7fe419af0f01
|
File details
Details for the file traceplot-1.0.0-py3-none-any.whl.
File metadata
- Download URL: traceplot-1.0.0-py3-none-any.whl
- Upload date:
- Size: 9.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d4f58be709e4f724e2987d266ca8ad7b9aa2862d160b3392563d7a2c7004e2b5
|
|
| MD5 |
929992662b8903b0a09b313bf53930bc
|
|
| BLAKE2b-256 |
94bed7418c116f341c6f63e18d1421ecb003033d67e85efbff2909a5191b6ed2
|