Skip to content

Commit ce1034d

Browse files
authored
Merge pull request #194 from aws-deepracer-community/master
new tracks for March 2023
2 parents 9123ca7 + a883cdf commit ce1034d

6 files changed

+260
-3
lines changed

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# deepracer-log-guru
22

33
## Announcement
4-
20th October 2022: Version 3.2.15 is now available with support for all the latest tracks including the 2022 re:Invent Championship track
4+
5th March 2023: Version 3.2.16 is now available with support for the clockwise version of the Hot Rod Super Speedway track for the March 2023 Virtual Circuit race
55

66
## Introduction
77

@@ -33,6 +33,7 @@ See its sibling product [Deep Racer Framework](https://github.com/dmh23/deep_rac
3333
* [Troubleshooting](docs/trouble_shooting.md)
3434

3535
## Old Announcements
36+
* 20th October 2022: Version 3.2.15 is now available with support for all the latest tracks including the 2022 re:Invent Championship track
3637
* 6th September 2022: Version 3.2.14 is now available with support for the new Roger Super Raceway track
3738
* 3rd August 2022: Version 3.2.13 is now available with support for the new Jochem Highway and Jochem Turnpike tracks
3839
* 6th July 2022: Version 3.2.12 is now available with support for the new DBro Raceway and DBro Super Raceway tracks

src/personalize/configuration/personal_track_annotations.py

+4
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,10 @@
8989

9090
hot_rod_super_speedway_annotations = []
9191

92+
hot_rod_super_speedway_cw_annotations = []
93+
94+
hot_rod_super_speedway_ccw_annotations = []
95+
9296
reinvent_2018_wide_annotations = []
9397

9498
playa_raceway_annotations = []
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,125 @@
1+
#
2+
# DeepRacer Guru
3+
#
4+
# Version 3.0 onwards
5+
#
6+
# Copyright (c) 2021 dmh23
7+
#
8+
9+
from src.tracks.track import Track
10+
import src.personalize.configuration.personal_track_annotations as config
11+
12+
13+
class HotRodSuperSpeedwayCounterClockwiseTrack(Track):
14+
def __init__(self):
15+
super().__init__()
16+
17+
self._ui_name = "Hot Rod Super Speedway (New Counter Clockwise)"
18+
self._ui_description = "The Hot Rod Super Speedway adds pro difficulty to the short track counterpart. With a length of 59.69m, the speed loving arch is replaced by 4 short straightaways coupled with variable angle turns. Skillful racers may bisect the chicanes to extending speed generating opportunities and pull away from the pack."
19+
self._ui_length_in_m = 59.69 # metres
20+
self._ui_width_in_cm = 107 # centimetres
21+
self._world_name = "arctic_pro_ccw"
22+
self._track_sector_dividers = [45, 83, 125, 162]
23+
self._annotations = config.hot_rod_super_speedway_ccw_annotations
24+
self._track_width = 1.066
25+
26+
self._track_waypoints = [(6.877759007678554, 3.661875078328614), (6.577331570849941, 3.694874713071351),
27+
(6.2769396583896135, 3.7281596156439827), (5.976568249927089, 3.76161820615149),
28+
(5.67619541095309, 3.7950860949835823), (5.375820903049037, 3.8285611363730476),
29+
(5.075444249377773, 3.8620436879477547), (4.775065926776454, 3.895533034451966),
30+
(4.474685935245082, 3.929030487187867), (4.174298314319179, 3.9624574872336433),
31+
(3.8738879244189715, 3.995572754987245), (3.5734519045215105, 4.0283586474738176),
32+
(3.2729914467196917, 4.06081552232123), (2.9725064318042254, 4.09294373715735),
33+
(2.6719968597751116, 4.124742695935732), (2.3714789430957293, 4.156439134725099),
34+
(2.0710668246608233, 4.189600059636598), (1.7707823793750261, 4.224523136266237),
35+
(1.4706259052615618, 4.261209556706911), (1.1705968658786272, 4.299658486493593),
36+
(0.870695767865703, 4.339870044835573), (0.5708946268420672, 4.381461689122682),
37+
(0.27059486316256276, 4.416162678845888), (-0.030446447490527717, 4.440617630132204),
38+
(-0.33223918272443065, 4.454124996312624), (-0.631507547630741, 4.416010210164552),
39+
(-0.9178149123329664, 4.3206722232184465), (-1.1790178437370802, 4.1696465703330094),
40+
(-1.4040046055454756, 3.9686567279181526), (-1.584458144440129, 3.7267527076087044),
41+
(-1.7241886575359846, 3.4589081498465584), (-1.8749460895199324, 3.197084138043885),
42+
(-2.049936147465184, 2.950796196111207), (-2.247169109119847, 2.721928665288453),
43+
(-2.4666391332287336, 2.514326045163636), (-2.706455679668858, 2.330596634992127),
44+
(-2.965095134510472, 2.1745811792693184), (-3.241179676784947, 2.05207915032721),
45+
(-3.530625077022984, 1.9658066126189278), (-3.8291506488461042, 1.9200750681242988),
46+
(-4.131129475368931, 1.9159571024260567), (-4.430940361751988, 1.9526426287970589),
47+
(-4.728651495708897, 2.0047186704955147), (-5.025815459026768, 2.0598326417288826),
48+
(-5.3224115092892195, 2.117927679666047), (-5.618620606197789, 2.177966603883271),
49+
(-5.914355488552525, 2.2403000685057686), (-6.20969006611295, 2.30450207913733),
50+
(-6.504443140758946, 2.371320674069886), (-6.798540564312413, 2.4409711452803657),
51+
(-7.094207497372105, 2.502163598187928), (-7.395753117336707, 2.517361650117402),
52+
(-7.695350142254306, 2.481056639798646), (-7.9810092170376326, 2.3842716904959724),
53+
(-8.235394688381627, 2.2224921079955147), (-8.442649575008824, 2.0034805628142403),
54+
(-8.581590863003209, 1.7365666123709724), (-8.70214006496854, 1.459415623792176),
55+
(-8.823277683987095, 1.1825208457789467), (-8.944133015407994, 0.9055034908137367),
56+
(-9.06533643795438, 0.6286377551636742), (-9.186593743099644, 0.3517961817464874),
57+
(-9.28824207378812, 0.0679546313962982), (-9.309090824856236, -0.23248886143350145),
58+
(-9.221933098568394, -0.5195987132706597), (-9.024697514309361, -0.7457323727526619),
59+
(-8.761021347774937, -0.8914889899411156), (-8.470802517666295, -0.974380379668708),
60+
(-8.170829506649449, -1.0088504460968926), (-7.86910316540189, -0.997512927404876),
61+
(-7.573447676433995, -0.9365827945389702), (-7.293040486111119, -0.8249287364401772),
62+
(-7.036970587505772, -0.6650873032727196), (-6.811695070995762, -0.46408048098468324),
63+
(-6.592984648479893, -0.25571032439851304), (-6.341185065044835, -0.09009355878018876),
64+
(-6.051611157192662, -0.009481808296675887),
65+
(-5.750702591671422, -0.029285660139556136),
66+
(-5.455647202267125, -0.09368187760495683), (-5.180140467419102, -0.21609265183591386),
67+
(-4.947858782543614, -0.40797170823001405), (-4.768487663998082, -0.6499415246167137),
68+
(-4.625949593319371, -0.9164501336731865), (-4.476146670116856, -1.178917637220855),
69+
(-4.313024612202122, -1.43330287014627), (-4.133908601536229, -1.6766663101830437),
70+
(-3.9360817392010237, -1.9050388840355827), (-3.7168127019543196, -2.1128374246277764),
71+
(-3.473878117336705, -2.2922714260735466), (-3.207121582760289, -2.433686366430755),
72+
(-2.919939728512242, -2.526568343988891), (-2.6204371173519636, -2.5642579106011345),
73+
(-2.31874665810056, -2.582364251963134), (-2.0170391519207502, -2.6001749542870476),
74+
(-1.7153296191830183, -2.617957880846496), (-1.4136041124004866, -2.6354718712487175),
75+
(-1.111858638061955, -2.6526314524331047), (-0.8101021964687849, -2.669598391405578),
76+
(-0.508342089189961, -2.686501434198852), (-0.20658078981824424, -2.7033823040642693),
77+
(0.0951859019111847, -2.7201668528237297), (0.3969502727847587, -2.736993363253112),
78+
(0.698698220716041, -2.754110863558288), (1.0004423837523913, -2.7712934521355583),
79+
(1.3022923748355364, -2.785360863558288), (1.594033388362456, -2.859141877047059),
80+
(1.8571424167018389, -3.006545832506652), (2.0868369023662066, -3.2024728563942864),
81+
(2.2864489238124346, -3.429220369211669), (2.491223839984462, -3.651357820383544),
82+
(2.723785905108974, -3.8436463383355095), (2.9940164368014788, -3.9771243837990715),
83+
(3.286958841548488, -4.050122788301939), (3.585137871966884, -4.099432399622435),
84+
(3.885288862453029, -4.134614398828978), (4.18619993136935, -4.162841847292418),
85+
(4.487321404681728, -4.188738038889403), (4.7885558884006, -4.213280728212828),
86+
(5.089869527087734, -4.236835410944456), (5.3912349026065325, -4.259723952166075),
87+
(5.692633895144985, -4.282159855715269), (5.994054822192714, -4.304304411760802),
88+
(6.295502213702724, -4.326079419008726), (6.596984891162441, -4.347364833704466),
89+
(6.898496417270229, -4.368240764490599), (7.200030354724452, -4.388786843172545),
90+
(7.501579312549159, -4.409105828157896), (7.803137091861293, -4.429303338877196),
91+
(8.103893546329067, -4.45694320475244), (8.40562370227389, -4.456190278879637),
92+
(8.700369147525356, -4.392341902605528), (8.967297820315883, -4.252914002291197),
93+
(9.179193763003871, -4.039082815996641), (9.320443419681117, -3.772858431688781),
94+
(9.397507457004115, -3.4810739067711785), (9.419634131656215, -3.180076768747802),
95+
(9.386425761447475, -2.880090287081237), (9.30181625293307, -2.590282848230834),
96+
(9.171434191928432, -2.317991783968444), (8.992675570712612, -2.0747259167351677),
97+
(8.771010665164516, -1.8697958496727898), (8.51458480762057, -1.7104908136048271),
98+
(8.232672957644985, -1.6025178340592339), (7.935417203174159, -1.549890926233764),
99+
(7.633267192111537, -1.5439058450379326), (7.331038026080654, -1.542461326471801),
100+
(7.028807906375453, -1.5410173443474724), (6.7266342918735, -1.5404058602967217),
101+
(6.424557952151821, -1.5412654188790276), (6.122095851169155, -1.5363415685810997),
102+
(5.819144038425014, -1.524051239840026), (5.516429929004238, -1.515334895006652),
103+
(5.216171769366786, -1.5440544394173576), (4.915074853168056, -1.5695288685479118),
104+
(4.612924842105434, -1.572071364275451), (4.311910895572231, -1.5463488010086968),
105+
(4.016657857165859, -1.4828470257439568), (3.73181441234164, -1.3823088017620995),
106+
(3.463322905765102, -1.2440945414223625), (3.2189663927417254, -1.0668528286137535),
107+
(3.012702373729274, -0.8466857877888634), (2.840082315669582, -0.5986221787848427),
108+
(2.6598923485141253, -0.35599400953882476), (2.4736743252139544, -0.11794906680964967),
109+
(2.2869029323916887, 0.1196606251082466), (2.107813803420589, 0.3630997667691753),
110+
(1.9475118796687578, 0.6190724166712807), (1.8140939156871294, 0.8900168629965828),
111+
(1.7901804129939531, 1.1870336028418587), (1.918580381141231, 1.457703182347779),
112+
(2.1562063376765703, 1.6382286640486763), (2.453006295428798, 1.691244134553437),
113+
(2.7549498360019182, 1.7011836859068916), (3.0566423218112444, 1.6838481518111275),
114+
(3.358605889545009, 1.6725956293425606), (3.660794405208156, 1.6674146148047493),
115+
(3.962998298869655, 1.6632496210417793), (4.265215901599452, 1.6601336094222114),
116+
(4.5674364845614885, 1.657396146901612), (4.869662074313686, 1.6552321406683967),
117+
(5.171891955600307, 1.6539896818480537), (5.474123744235561, 1.6530516835532234),
118+
(5.776356486545131, 1.6524601074538277), (6.0785894672732805, 1.6525611969313667),
119+
(6.380821971164272, 1.653169104703431), (6.683016804919765, 1.6568731757483528),
120+
(6.980816392169521, 1.7060031982741402), (7.263491896853969, 1.8118676039061592),
121+
(7.520350484118984, 1.9704026075682686), (7.741617707477138, 2.175691613801484),
122+
(7.91921880649142, 2.419774601109986), (8.034839181170986, 2.698093125470643),
123+
(8.068958310351894, 2.9971975776038215), (7.984574584231899, 3.283768126615052),
124+
(7.760927466617153, 3.481767723210816), (7.476501969562099, 3.581495234616761),
125+
(7.1782222072940325, 3.6291601153693245), (6.877759007678554, 3.661875078328614)]

0 commit comments

Comments
 (0)