Talk:List of RAGBRAI overnight stops

Page contents not supported in other languages.
Source: Wikipedia, the free encyclopedia.

length of average leg

/* Here is a C program that calculates the length of the average leg of RAGBRAI trips and the length of the average trip. */

/* It was produced semi-mechanically from the table in the article. */

/* Apparently the 1973 trip had only six legs whereas the other 39 trips had seven legs each */

\#include <stdio.h>

int main() {

  float d;
  d = (412 +422 +450 +430 +400 +440 +480 +468 +490 +523
      +492 +474 +540 +479 +437 +433 +479 +495 +432 +494
      +525 +511 +493 +437 +464 +488 +487 +450 +506 +525
      +495 +490 +485 +444 +479 +471 +442 +450 +454 +471)
      ;
  printf("average leg = %f\n",d/((39*7)+6));
  printf("average trip = %f\n",d/40);

}

Data on elevation/hills.

It would be good if somebody could add data on the hilliness of the routes.CountMacula (talk) 08:46, 14 August 2012 (UTC)[reply]

Processing script

Feel free to use / modify my python script I wrote to convert the route data into the rest of the data on the page (by visit frequency & by city).

https://github.com/cmlburnett/WP-RAGBRAI

It's pretty straight forward python. Cburnett (talk) 22:12, 19 July 2015 (UTC)[reply]

Route maps

There are images of the route map for each year. Could someone add them to this page? — Preceding unsigned comment added by 173.49.71.155 (talk) 20:36, 30 June 2021 (UTC)[reply]