{% extends "_base.html" %} {% block content %}

Custom Tracks

{{ custom_tracks_info | length }} tracks

To create your own track, use the World Builder at https://physicar.ai/resources/world-builder

Importing and validating...
{% if custom_tracks_info | length == 0 %}

No custom tracks

Import a track archive (.tar.gz) created with the World Builder.

{% else %}
{% for track_id, track_info in custom_tracks_info.items() %}
{{ track_id }}
{{ track_id }}
{% if track_info.track_length %}Length: {{ "%.1f" | format(track_info.track_length) }}m{% endif %}
{% if track_info.track_width %}Width: {{ "%.2f" | format(track_info.track_width) }}m{% endif %}
Waypoints
{% endfor %}
{% endif %}

Official Tracks

{{ tracks_info | length }} tracks
{% for track_id, track_info in tracks_info.items() %}
{{ track_id }}
{{ track_id }}
Length: {{ "%.1f" | format(track_info.track_length) }}m
Width: {{ "%.2f" | format(track_info.track_width) }}m
Waypoints
{% endfor %}
{% endblock %} {% block scripts %} {% endblock %}