|
| 1 | +version: 2 |
| 2 | + |
| 3 | +models: |
| 4 | + - name: src_stats |
| 5 | + description: This model contains various athletic activity statistics, including totals for rides, runs, and swims, with unit conversions applied. It also includes recent 4-week totals. |
| 6 | + columns: |
| 7 | + - name: all_ride_totals__count |
| 8 | + description: Total count of all rides |
| 9 | + |
| 10 | + - name: all_ride_totals__distance_miles |
| 11 | + description: Total distance of all rides in miles |
| 12 | + |
| 13 | + - name: all_ride_totals__elapsed_time_days |
| 14 | + description: Total elapsed time of all rides in days |
| 15 | + |
| 16 | + - name: all_ride_totals__elevation_gain_miles |
| 17 | + description: Total elevation gain of all rides in miles |
| 18 | + |
| 19 | + - name: all_ride_totals__moving_time_days |
| 20 | + description: Total moving time of all rides in days |
| 21 | + |
| 22 | + - name: all_run_totals__count |
| 23 | + description: Total count of all runs |
| 24 | + |
| 25 | + - name: all_run_totals__distance_miles |
| 26 | + description: Total distance of all runs in miles |
| 27 | + |
| 28 | + - name: all_run_totals__elapsed_time_days |
| 29 | + description: Total elapsed time of all runs in days |
| 30 | + |
| 31 | + - name: all_run_totals__elevation_gain_miles |
| 32 | + description: Total elevation gain of all runs in miles |
| 33 | + |
| 34 | + - name: all_run_totals__moving_time_days |
| 35 | + description: Total moving time of all runs in days |
| 36 | + |
| 37 | + - name: all_swim_totals__count |
| 38 | + description: Total count of all swims |
| 39 | + |
| 40 | + - name: all_swim_totals__distance_miles |
| 41 | + description: Total distance of all swims in miles |
| 42 | + |
| 43 | + - name: all_swim_totals__elapsed_time_hours |
| 44 | + description: Total elapsed time of all swims in hours |
| 45 | + |
| 46 | + - name: all_swim_totals__elevation_gain_feet |
| 47 | + description: Total elevation gain of all swims in feet |
| 48 | + |
| 49 | + - name: all_swim_totals__moving_time_hours |
| 50 | + description: Total moving time of all swims in hours |
| 51 | + |
| 52 | + - name: biggest_climb_elevation_gain_feet |
| 53 | + description: Elevation gain of the biggest climb in feet |
| 54 | + |
| 55 | + - name: biggest_ride_distance_miles |
| 56 | + description: Distance of the biggest ride in miles |
| 57 | + |
| 58 | + - name: recent_ride_totals__achievement_count |
| 59 | + description: Achievement count for rides in the last 4 weeks |
| 60 | + |
| 61 | + - name: recent_ride_totals__count |
| 62 | + description: Count of rides in the last 4 weeks |
| 63 | + |
| 64 | + - name: recent_ride_totals__distance_miles |
| 65 | + description: Total distance of rides in the last 4 weeks in miles |
| 66 | + |
| 67 | + - name: recent_ride_totals__elapsed_time_hours |
| 68 | + description: Total elapsed time of rides in the last 4 weeks in hours |
| 69 | + |
| 70 | + - name: recent_ride_totals__elevation_gain_feet |
| 71 | + description: Total elevation gain of rides in the last 4 weeks in feet |
| 72 | + |
| 73 | + - name: recent_ride_totals__moving_time_hours |
| 74 | + description: Total moving time of rides in the last 4 weeks in hours |
| 75 | + |
| 76 | + - name: recent_run_totals__achievement_count |
| 77 | + description: Achievement count for runs in the last 4 weeks |
| 78 | + |
| 79 | + - name: recent_run_totals__count |
| 80 | + description: Count of runs in the last 4 weeks |
| 81 | + |
| 82 | + - name: recent_run_totals__distance_miles |
| 83 | + description: Total distance of runs in the last 4 weeks in miles |
| 84 | + |
| 85 | + - name: recent_run_totals__elapsed_time_hours |
| 86 | + description: Total elapsed time of runs in the last 4 weeks in hours |
| 87 | + |
| 88 | + - name: recent_run_totals__elevation_gain_feet |
| 89 | + description: Total elevation gain of runs in the last 4 weeks in feet |
| 90 | + |
| 91 | + - name: recent_run_totals__moving_time_hours |
| 92 | + description: Total moving time of runs in the last 4 weeks in hours |
| 93 | + |
| 94 | + - name: recent_swim_totals__achievement_count |
| 95 | + description: Achievement count for swims in the last 4 weeks |
| 96 | + |
| 97 | + - name: recent_swim_totals__count |
| 98 | + description: Count of swims in the last 4 weeks |
| 99 | + |
| 100 | + - name: recent_swim_totals__distance_miles |
| 101 | + description: Total distance of swims in the last 4 weeks in miles |
| 102 | + |
| 103 | + - name: recent_swim_totals__elapsed_time_minutes |
| 104 | + description: Total elapsed time of swims in the last 4 weeks in minutes |
| 105 | + |
| 106 | + - name: recent_swim_totals__elevation_gain_feet |
| 107 | + description: Total elevation gain of swims in the last 4 weeks in feet |
| 108 | + |
| 109 | + - name: recent_swim_totals__moving_time_minutes |
| 110 | + description: Total moving time of swims in the last 4 weeks in minutes |
| 111 | + |
| 112 | + - name: ytd_ride_totals__count |
| 113 | + description: Count of year-to-date rides |
| 114 | + |
| 115 | + - name: ytd_ride_totals__distance_miles |
| 116 | + description: Total distance of year-to-date rides in miles |
| 117 | + |
| 118 | + - name: ytd_ride_totals__elapsed_time_days |
| 119 | + description: Total elapsed time of year-to-date rides in days |
| 120 | + |
| 121 | + - name: ytd_ride_totals__elevation_gain_feet |
| 122 | + description: Total elevation gain of year-to-date rides in feet |
| 123 | + |
| 124 | + - name: ytd_ride_totals__moving_time_days |
| 125 | + description: Total moving time of year-to-date rides in days |
| 126 | + |
| 127 | + - name: ytd_run_totals__count |
| 128 | + description: Count of year-to-date runs |
| 129 | + |
| 130 | + - name: ytd_run_totals__distance_miles |
| 131 | + description: Total distance of year-to-date runs in miles |
| 132 | + |
| 133 | + - name: ytd_run_totals__elapsed_time_days |
| 134 | + description: Total elapsed time of year-to-date runs in days |
| 135 | + |
| 136 | + - name: ytd_run_totals__elevation_gain_feet |
| 137 | + description: Total elevation gain of year-to-date runs in feet |
| 138 | + |
| 139 | + - name: ytd_run_totals__moving_time_days |
| 140 | + description: Total moving time of year-to-date runs in days |
| 141 | + |
| 142 | + - name: ytd_swim_totals__count |
| 143 | + description: Count of year-to-date swims |
| 144 | + |
| 145 | + - name: ytd_swim_totals__distance_miles |
| 146 | + description: Total distance of year-to-date swims in miles |
| 147 | + |
| 148 | + - name: ytd_swim_totals__elapsed_time_minutes |
| 149 | + description: Total elapsed time of year-to-date swims in minutes |
| 150 | + |
| 151 | + - name: ytd_swim_totals__elevation_gain_feet |
| 152 | + description: Total elevation gain of year-to-date swims in feet |
| 153 | + |
| 154 | + - name: ytd_swim_totals__moving_time_minutes |
| 155 | + description: Total moving time of year-to-date swims in minutes |
0 commit comments