Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: adding illustration for special tracks #705

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 36 additions & 1 deletion run_page/gpxtrackposter/poster.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def __init__(self):
"special": "#FFFF00",
"track": "#4DD2FF",
}
self.special_distance = {"special_distance1": "10", "special_distance2": "20"}
self.special_distance = {"special_distance": 10, "special_distance2": 20}
self.width = 200
self.height = 300
self.years = None
Expand Down Expand Up @@ -155,6 +155,9 @@ def __draw_footer(self, d):
value_style = "font-size:9px; font-family:Arial"
small_value_style = "font-size:3px; font-family:Arial"

special_distance1 = self.special_distance["special_distance"]
special_distance2 = self.special_distance["special_distance2"]

(
total_length,
average_length,
Expand All @@ -179,6 +182,38 @@ def __draw_footer(self, d):
style=value_style,
)
)

d.add(
d.text(
self.trans("SPECIAL TRACKS"),
insert=(65, self.height - 20),
fill=text_color,
style=header_style,
)
)

d.add(d.rect((65, self.height - 17), (2.6, 2.6), fill=self.colors["special"]))

d.add(
d.text(
f"Over {str(special_distance1)} km",
zhaohongxuan marked this conversation as resolved.
Show resolved Hide resolved
insert=(70, self.height - 14.5),
fill=text_color,
style=small_value_style,
)
)

d.add(d.rect((65, self.height - 13), (2.6, 2.6), fill=self.colors["special2"]))

d.add(
d.text(
f"Over {str(special_distance2)} km",
insert=(70, self.height - 10.5),
fill=text_color,
style=small_value_style,
)
)

d.add(
d.text(
self.trans("STATISTICS"),
Expand Down