IROC V

The fifth year of IROC competition took place over three weekends in 1977 and 1978. IROC V saw the use of the Chevrolet Camaro in all races, and the schedule was held over in its entirety from IROC IV. Al Unser won two races en route to the championship, and took home $50,000 for his efforts.

1977–78 International Race of Champions
Previous: 1976–77 Next: 1978–79
Al Unser won the IROC V championship

The roster of drivers and final points standings were as follows:[1]

Rank Driver Winnings Series
1 Al Unser$50,000USAC Champ Car
2 Mario Andretti$26,000USAC Champ Car
3 Darrell Waltrip$23,000NASCAR Winston Cup
4 Cale Yarborough$23,000NASCAR Winston Cup
5 Richard Petty$20,000NASCAR Winston Cup
6 Gordon Johncock$17,500USAC Champ Car
7 Benny ParsonsAll$16,000NASCAR Winston Cup
8 Jacky Ickx$15,000Formula One
9 Johnny Rutherford$12,000USAC Champ Car
10 Gunnar Nilsson3$7,500Formula One
11 Tom Sneva$7,500USAC Champ Car
12 Al Holbert$7,500IMSA Camel GT

Race results

Michigan International Speedway, Race One

  1. Al Unser
  2. Cale Yarborough
  3. Darrell Waltrip
  4. Richard Petty
  5. Gunnar Nilsson
  6. Gordon Johncock
  7. Mario Andretti
  8. Johnny Rutherford
  9. Benny Parsons
  10. Al Holbert
  11. Tom Sneva
  12. Jacky Ickx

Riverside International Raceway, Race Two

  1. Al Unser
  2. Richard Petty
  3. Gordon Johncock
  4. Mario Andretti
  5. Darrell Waltrip
  6. Gunnar Nilsson
  7. Johnny Rutherford
  8. Jacky Ickx
  9. Benny Parsons
  10. Cale Yarborough
  11. Al Holbert
  12. Tom Sneva

Riverside International Raceway, Race Three

  1. Cale Yarborough
  2. Mario Andretti
  3. Al Unser
  4. Darrell Waltrip
  5. Richard Petty
  6. Gunnar Nilsson
  7. Jacky Ickx
  8. Benny Parsons
  9. Johnny Rutherford
  10. Gordon Johncock
  11. Tom Sneva
  12. Al Holbert

Daytona International Speedway, Race Four

  1. Mario Andretti
  2. Darrell Waltrip
  3. Gordon Johncock
  4. Cale Yarborough
  5. Benny Parsons
  6. Jacky Ickx
  7. Al Unser
  8. Richard Petty
  9. Johnny Rutherford
gollark: Sure? I would move it to beside <#733816666089062511> but mobile.
gollark: Heavpoot is to be declared SCP-3125-A with immediate effect.
gollark: My tape download program now supports downloading big files without splitting them, via range requests, assuming they're served from a server which supports it: https://pastebin.com/LW9RFpmY (do `web2tape https://url.whatever range`)
gollark: Here is a similar thing for JSON. Note that it delegates out to an external JSON library for string escaping.```luafunction safe_json_serialize(x, prev) local t = type(x) if t == "number" then if x ~= x or x <= -math.huge or x >= math.huge then return tostring(x) end return string.format("%.14g", x) elseif t == "string" then return json.encode(x) elseif t == "table" then prev = prev or {} local as_array = true local max = 0 for k in pairs(x) do if type(k) ~= "number" then as_array = false break end if k > max then max = k end end if as_array then for i = 1, max do if x[i] == nil then as_array = false break end end end if as_array then local res = {} for i, v in ipairs(x) do table.insert(res, safe_json_serialize(v)) end return "["..table.concat(res, ",").."]" else local res = {} for k, v in pairs(x) do table.insert(res, json.encode(tostring(k)) .. ":" .. safe_json_serialize(v)) end return "{"..table.concat(res, ",").."}" end elseif t == "boolean" then return tostring(x) elseif x == nil then return "null" else return json.encode(tostring(x)) endend```
gollark: My tape shuffler thing from a while ago got changed round a bit. Apparently there's some demand for it, so I've improved the metadata format and written some documentation for it, and made the encoder work better by using file metadata instead of filenames and running tasks in parallel so it's much faster. The slightly updated code and docs are here: https://pastebin.com/SPyr8jrh. There are also people working on alternative playback/encoding software for the format for some reason.

References

This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.