Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -1517,6 +1517,7 @@ with tab_pdf:
|
|
| 1517 |
{
|
| 1518 |
"Indicateur": [
|
| 1519 |
"PDF source",
|
|
|
|
| 1520 |
"Type d’attaque estimé",
|
| 1521 |
"Transition talon→avant-pied G",
|
| 1522 |
"Transition talon→avant-pied D",
|
|
@@ -1535,6 +1536,7 @@ with tab_pdf:
|
|
| 1535 |
],
|
| 1536 |
"Valeur": [
|
| 1537 |
matched_pdf["source_pdf"],
|
|
|
|
| 1538 |
matched_pdf["attaque_pdf"],
|
| 1539 |
f"{matched_pdf['transition_g']:.3f} s" if pd.notna(matched_pdf["transition_g"]) else "N/A",
|
| 1540 |
f"{matched_pdf['transition_d']:.3f} s" if pd.notna(matched_pdf["transition_d"]) else "N/A",
|
|
|
|
| 1517 |
{
|
| 1518 |
"Indicateur": [
|
| 1519 |
"PDF source",
|
| 1520 |
+
"Allure du PDF",
|
| 1521 |
"Type d’attaque estimé",
|
| 1522 |
"Transition talon→avant-pied G",
|
| 1523 |
"Transition talon→avant-pied D",
|
|
|
|
| 1536 |
],
|
| 1537 |
"Valeur": [
|
| 1538 |
matched_pdf["source_pdf"],
|
| 1539 |
+
f"{matched_pdf.get('speed_kmh', 'N/A')} km/h" if matched_pdf.get("speed_kmh") else "N/A",
|
| 1540 |
matched_pdf["attaque_pdf"],
|
| 1541 |
f"{matched_pdf['transition_g']:.3f} s" if pd.notna(matched_pdf["transition_g"]) else "N/A",
|
| 1542 |
f"{matched_pdf['transition_d']:.3f} s" if pd.notna(matched_pdf["transition_d"]) else "N/A",
|