{"id":16581,"date":"2026-03-07T10:20:23","date_gmt":"2026-03-07T01:20:23","guid":{"rendered":"https:\/\/f1-lap-time.com\/?p=16581"},"modified":"2026-03-07T10:22:27","modified_gmt":"2026-03-07T01:22:27","slug":"%e3%80%90%e3%82%aa%e3%83%bc%e3%82%b9%e3%83%88%e3%83%a9%e3%83%aa%e3%82%a2gp%e3%80%91-fp2%e3%83%ad%e3%83%b3%e3%82%b0%e3%83%a9%e3%83%b3%e5%88%86%e6%9e%90","status":"publish","type":"post","link":"https:\/\/f1-lap-time.com\/?p=16581","title":{"rendered":"\u3010\u30aa\u30fc\u30b9\u30c8\u30e9\u30ea\u30a2GP\u3011 FP2\u30ed\u30f3\u30b0\u30e9\u30f3\u5206\u6790"},"content":{"rendered":"\n<p>\u3000\u4ee5\u4e0b\u306f\u3001\u5404\u8eca\u306e\u30ed\u30f3\u30b0\u30e9\u30f3\u30da\u30fc\u30b9\u3092\u793a\u3059\u30a4\u30f3\u30bf\u30e9\u30af\u30c6\u30a3\u30d6\u306a\u30b0\u30e9\u30d5\u3060\u3002\u30dc\u30bf\u30f3\u64cd\u4f5c\u3067\u898b\u305f\u3044\u30c9\u30e9\u30a4\u30d0\u30fc\u3060\u3051\u3092\u8868\u793a\u3067\u304d\u308b\u3002<\/p>\n\n\n\n<!DOCTYPE html>\n<html lang=\"ja\">\n<head>\n<meta charset=\"UTF-8\">\n<title>Race Lap Time Interactive Graph<\/title>\n<script src=\"https:\/\/cdn.plot.ly\/plotly-2.26.0.min.js\"><\/script>\n<style>\n body{margin:20px;background:#fff;color:#000;}\n .driver-toggle{\n   display:inline-block;\n   padding:4px 8px;\n   margin:2px 4px;\n   border:1px solid #ccc;\n   border-radius:4px;\n   cursor:pointer;\n   user-select:none;\n   font-weight:bold;\n   color:#000;\n }\n .driver-toggle.active{border:1px solid #000;}\n #selectAll,#clearAll{\n   margin-left:10px;\n   padding:6px 12px;\n   cursor:pointer;\n   font-size:1.1em;\n }\n #controls,\n #controls strong,\n .driver-toggle,\n #selectAll,\n #clearAll{\n   font-family:\"Times New Roman\",serif;\n }\n<\/style>\n<\/head>\n<body>\n\n<h2>Lap Times<\/h2>\n<div id=\"controls\">\n  <strong>Drivers:<\/strong>\n  <span id=\"driverButtons\"><\/span>\n  <button id=\"selectAll\">Select All<\/button>\n  <button id=\"clearAll\">Clear All<\/button>\n<\/div>\n<div id=\"lapChart\" style=\"width:100%;max-width:1200px;height:520px;\"><\/div>\n\n<script>\nconst DATA_FILE = \"australia_2026_FP2_lap_times.tsv\";\n\n\/*\n  2026 Australian GP \u521d\u7248\n  \u4e26\u3073\u9806 = 2025 \u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u30fc\u30ba\u9806\u4f4d\u9806\n  McLaren \u2192 Mercedes \u2192 Red Bull \u2192 Ferrari \u2192 Williams\n  \u2192 Racing Bulls \u2192 Aston Martin \u2192 Haas \u2192 Kick Sauber \u2192 Alpine\n*\/\nconst DRIVERS = [\n  \"NOR\",\"PIA\",\n  \"RUS\",\"ANT\",\n  \"VER\",\"HAD\",\n  \"LEC\",\"HAM\",\n  \"ALB\",\"SAI\",\n  \"LAW\",\"LIN\",\n  \"ALO\",\"STR\",\n  \"OCO\",\"BEA\",\n  \"HUL\",\"BOR\",\n  \"GAS\",\"COL\"\n];\n\nconst NAME_MAP = {\n  \"Lando NORRIS\":\"NOR\",\n  \"Oscar PIASTRI\":\"PIA\",\n  \"George RUSSELL\":\"RUS\",\n  \"Kimi ANTONELLI\":\"ANT\",\n  \"Max VERSTAPPEN\":\"VER\",\n  \"Isack HADJAR\":\"HAD\",\n  \"Charles LECLERC\":\"LEC\",\n  \"Lewis HAMILTON\":\"HAM\",\n  \"Alexander ALBON\":\"ALB\",\n  \"Carlos SAINZ\":\"SAI\",\n  \"Liam LAWSON\":\"LAW\",\n  \"Arvid LINDBLAD\":\"LIN\",\n  \"Fernando ALONSO\":\"ALO\",\n  \"Lance STROLL\":\"STR\",\n  \"Esteban OCON\":\"OCO\",\n  \"Oliver BEARMAN\":\"BEA\",\n  \"Nico HULKENBERG\":\"HUL\",\n  \"Gabriel BORTOLETO\":\"BOR\",\n  \"Pierre GASLY\":\"GAS\",\n  \"Franco COLAPINTO\":\"COL\"\n};\n\nconst DRIVER_COLORS = {\n  NOR:\"rgb(255,128,0)\",\n  PIA:\"rgb(255,192,128)\",\n\n  RUS:\"rgb(166,166,166)\",\n  ANT:\"rgb(0,176,80)\",\n\n  VER:\"rgb(0,32,96)\",\n  HAD:\"rgb(102,255,0)\",\n\n  LEC:\"rgb(255,0,0)\",\n  HAM:\"rgb(255,192,192)\",\n\n  ALB:\"rgb(192,176,224)\",\n  SAI:\"rgb(0,112,192)\",\n\n  LAW:\"rgb(180,198,231)\",\n  LIN:\"rgb(112,48,160)\",\n\n  ALO:\"rgb(0,176,240)\",\n  STR:\"rgb(0,112,112)\",\n\n  OCO:\"rgb(0,0,0)\",\n  BEA:\"rgb(128,128,128)\",\n\n  HUL:\"rgb(255,193,37)\",\n  BOR:\"rgb(192,0,0)\",\n\n  GAS:\"rgb(0,128,255)\",\n  COL:\"rgb(255,0,255)\"\n};\n\nconst WHITE_TEXT = new Set([\n  \"VER\",\"LIN\",\"STR\",\"OCO\",\"BEA\",\"SAI\",\"GAS\",\"BOR\"\n]);\n\nconst timeStrToSec = s => {\n  if(!s) return null;\n  const [m, rest] = s.split(\":\");\n  return parseInt(m, 10) * 60 + parseFloat(rest);\n};\n\nconst secToTime = s => {\n  const m = Math.floor(s \/ 60);\n  return m + \":\" + (\"0\" + (s - m * 60).toFixed(3)).slice(-6);\n};\n\nlet legendCounter = 0;\n\nfetch(DATA_FILE).then(r => r.text()).then(tsv => {\n  const rows = tsv.trim().split(\/\\r?\\n\/).map(l => l.split(\"\\t\"));\n  const headers = rows[0];\n\n  const laps = [];\n  const times = {};\n\n  DRIVERS.forEach(d => {\n    times[d] = [];\n  });\n\n  for(let i = 1; i < rows.length; i++){\n    const cells = rows[i];\n    const lap = parseInt(cells[0], 10);\n    laps.push(lap);\n\n    const row = {};\n    for(let j = 1; j < cells.length; j++){\n      row[headers[j]] = cells[j];\n    }\n\n    DRIVERS.forEach(d => {\n      const full = Object.keys(NAME_MAP).find(k => NAME_MAP[k] === d);\n      const t = timeStrToSec(row[full]);\n      times[d].push(t);\n    });\n  }\n\n  let fastest = Infinity;\n  DRIVERS.forEach(d => times[d].forEach(v => {\n    if(v && v < fastest) fastest = v;\n  }));\n\n  const yMin = Math.floor(fastest);\n  const yMax = yMin + 8;\n  const tickVals = Array.from({length: yMax - yMin + 1}, (_, k) => yMin + k);\n\n  const tracesLap = [];\n\n  DRIVERS.forEach(d => {\n    tracesLap.push({\n      name: d,\n      x: laps,\n      y: times[d],\n      mode: \"lines\",\n      line: {color: DRIVER_COLORS[d], width: 2},\n      visible: false,\n      showlegend: false\n    });\n\n    tracesLap.push({\n      x: laps,\n      y: times[d],\n      mode: \"markers\",\n      marker: {\n        size: 6,\n        color: DRIVER_COLORS[d],\n        symbol: \"circle\",\n        line: {color: DRIVER_COLORS[d], width: 2}\n      },\n      hoverinfo: \"skip\",\n      showlegend: false,\n      visible: false\n    });\n  });\n\n  const fontAll = {family:\"Times New Roman, Times, serif\"};\n  const legendCfg = {itemclick:false, itemdoubleclick:false};\n\n  Plotly.newPlot(\"lapChart\", tracesLap, {\n    font: fontAll,\n    legend: legendCfg,\n    xaxis: {\n      title: {text:\"Lap\", font: fontAll},\n      tickfont: fontAll\n    },\n    yaxis: {\n      title: {text:\"Time (m:s)\", font: fontAll},\n      tickfont: fontAll,\n      range: [yMax, yMin],\n      autorange: false,\n      tickvals: tickVals,\n      ticktext: tickVals.map(secToTime)\n    },\n    margin: {t:40}\n  }, {responsive:true});\n\n  const box = document.getElementById(\"driverButtons\");\n\n  function showDriver(idx){\n    const lineIdx = 2 * idx;\n    const markerIdx = lineIdx + 1;\n    legendCounter += 1;\n\n    Plotly.restyle(\"lapChart\", {\n      visible: true,\n      showlegend: true,\n      legendrank: legendCounter\n    }, [lineIdx]);\n\n    Plotly.restyle(\"lapChart\", {\n      visible: true\n    }, [markerIdx]);\n  }\n\n  function hideDriver(idx){\n    const lineIdx = 2 * idx;\n    const markerIdx = lineIdx + 1;\n\n    Plotly.restyle(\"lapChart\", {\n      visible: false,\n      showlegend: false,\n      legendrank: null\n    }, [lineIdx]);\n\n    Plotly.restyle(\"lapChart\", {\n      visible: false\n    }, [markerIdx]);\n  }\n\n  const toggle = (d, btn) => {\n    const idx = DRIVERS.indexOf(d);\n    if(btn.classList.toggle(\"active\")){\n      showDriver(idx);\n    }else{\n      hideDriver(idx);\n    }\n  };\n\n  DRIVERS.forEach(d => {\n    const b = document.createElement(\"span\");\n    b.textContent = d;\n    b.className = \"driver-toggle\";\n    b.style.backgroundColor = DRIVER_COLORS[d];\n    if(WHITE_TEXT.has(d)) b.style.color = \"#fff\";\n    b.onclick = () => toggle(d, b);\n    box.appendChild(b);\n  });\n\n  document.getElementById(\"selectAll\").onclick = () => {\n    legendCounter = 0;\n    document.querySelectorAll(\".driver-toggle\").forEach((btn, idx) => {\n      if(!btn.classList.contains(\"active\")) btn.classList.add(\"active\");\n      legendCounter += 1;\n\n      const lineIdx = 2 * idx;\n      const markerIdx = lineIdx + 1;\n\n      Plotly.restyle(\"lapChart\", {\n        visible: true,\n        showlegend: true,\n        legendrank: legendCounter\n      }, [lineIdx]);\n\n      Plotly.restyle(\"lapChart\", {\n        visible: true\n      }, [markerIdx]);\n    });\n  };\n\n  document.getElementById(\"clearAll\").onclick = () => {\n    legendCounter = 0;\n    document.querySelectorAll(\".driver-toggle.active\").forEach(btn => {\n      const idx = DRIVERS.indexOf(btn.textContent);\n      btn.classList.remove(\"active\");\n      hideDriver(idx);\n    });\n  };\n\n}).catch(e => {\n  console.error(e);\n  alert(\"TSV \u8aad\u307f\u8fbc\u307f\u306b\u5931\u6557\u3057\u307e\u3057\u305f\u3002\");\n});\n<\/script>\n\n<\/body>\n<\/html>\n\n\n\n<p>\u3000\u5404\u8eca\u306e\u30bf\u30a4\u30e4\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3002<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>George Russell\uff1a\u30cf\u30fc\u30c9<\/li>\n\n\n\n<li>Kimi Antonelli\uff1a\u30cf\u30fc\u30c9<\/li>\n\n\n\n<li>Lewis Hamilton\uff1a\u30cf\u30fc\u30c9<\/li>\n\n\n\n<li>Charles Leclerc\uff1a\u30cf\u30fc\u30c9<\/li>\n\n\n\n<li>Alexander Albon\uff1a\u30cf\u30fc\u30c9<\/li>\n\n\n\n<li>Oliver Bearman\uff1a\u30cf\u30fc\u30c9<\/li>\n\n\n\n<li>Esteban Ocon\uff1a\u30cf\u30fc\u30c9<\/li>\n\n\n\n<li>Isack Hadjar\uff1a\u30df\u30c7\u30a3\u30a2\u30e0<\/li>\n\n\n\n<li>Nico H\u00fclkenberg\uff1a\u30df\u30c7\u30a3\u30a2\u30e0<\/li>\n\n\n\n<li>Liam Lawson\uff1a\u30df\u30c7\u30a3\u30a2\u30e0<\/li>\n\n\n\n<li>Franco Colapinto\uff1a\u30df\u30c7\u30a3\u30a2\u30e0<\/li>\n\n\n\n<li>Valtteri Bottas\uff1a\u30df\u30c7\u30a3\u30a2\u30e0<\/li>\n\n\n\n<li>Max Verstappen\uff1a\u30df\u30c7\u30a3\u30a2\u30e0<\/li>\n\n\n\n<li>Gabriel Bortoleto\uff1a\u30df\u30c7\u30a3\u30a2\u30e0<\/li>\n\n\n\n<li>Arvid Lindblad\uff1a\u30df\u30c7\u30a3\u30a2\u30e0<\/li>\n\n\n\n<li>Oscar Piastri\uff1a\u30bd\u30d5\u30c8<\/li>\n\n\n\n<li>Lando Norris\uff1a\u30bd\u30d5\u30c8<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">\u7ba1\u7406\u4eba\u306e\u6240\u611f<\/h2>\n\n\n\n<p>\u3000\u300e<a href=\"https:\/\/f1-lap-time.com\/?p=16534\" target=\"_blank\" rel=\"noopener\" title=\"\">2026\u5e74\u30d5\u30e5\u30fc\u30a8\u30eb\u30a8\u30d5\u30a7\u30af\u30c8\u30ab\u30ec\u30f3\u30c0\u30fc<\/a>\u300f\u3067\u793a\u3057\u305f\u901a\u308a\u3001\u4eca\u5e74\u306f\u6628\u5e74\u3088\u308a\u30821\u5468\u3042\u305f\u308a\u306e\u71c3\u6599\u6d88\u8cbb\u91cf\u304c\u5c0f\u3055\u304f\u3001\u3059\u306a\u308f\u30611\u5468\u3042\u305f\u308a\u306e\u30d5\u30e5\u30fc\u30a8\u30eb\u30a8\u30d5\u30a7\u30af\u30c8\u304c\u5c0f\u3055\u3044\u3053\u3068\u3092\u610f\u5473\u3059\u308b\u3002\u3068\u306f\u3044\u3048\u3001\u30e1\u30eb\u30dc\u30eb\u30f3\u3067\u306f\u3001\u30cf\u30fc\u30d5\u30c7\u30a3\u30b9\u30bf\u30f3\u30b9\u306e29\u5468\u306e\u5dee\u3067\u30821.5\u79d2\u306e\u5dee\u304c\u3064\u304f\u305f\u3081\u3001\u6628\u5e74\u307e\u3067\u3068\u540c\u69d8\u3067\u3001\u5927\u5e45\u306b\u71c3\u6599\u642d\u8f09\u91cf\u304c\u7570\u306a\u308b\u30de\u30b7\u30f3\u304c\u3044\u308c\u3070\u898b\u5206\u3051\u3089\u308c\u308b\u3002\u4eca\u56de\u306f\u305d\u3046\u3057\u305f\u30de\u30b7\u30f3\u306f\u3044\u306a\u304b\u3063\u305f\u3002<\/p>\n\n\n\n<p>\u3000\u305d\u306e\u4e0a\u3067\u6bd4\u8f03\u3092\u884c\u3046\u3068\u3001\u30e9\u30c3\u30bb\u30eb\u306e\u30da\u30fc\u30b9\u306f\u98db\u3073\u629c\u3051\u3066\u304a\u308a\u3001\u540c\u50da\u306e\u30a2\u30f3\u30c8\u30cd\u30c3\u30ea\u306b0.5\u79d2\u307b\u3069\u306e\u5dee\u3092\u3064\u3051\u3066\u3044\u308b\u3002\u540c\u3058\u304f\u30cf\u30fc\u30c9\u30bf\u30a4\u30e4\u3067\u8d70\u884c\u3057\u305f\u30cf\u30df\u30eb\u30c8\u30f3\u306b\u5bfe\u3057\u3066\u3082\u3001\u305d\u308c\u4ee5\u4e0a\u306e\u5dee\u3092\u3064\u3051\u3066\u304a\u308a\u3001\u3053\u3053\u307e\u3067\u306f\u30e1\u30eb\u30bb\u30c7\u30b9\u304c\u5727\u5012\u7684\u512a\u4f4d\u3068\u8a00\u3048\u308b\u3060\u308d\u3046\u3002<\/p>\n\n\n\n<p>\u3000\u30cf\u30b8\u30e3\u30fc\u306f\u30df\u30c7\u30a3\u30a2\u30e0\u3067\u305d\u3053\u305d\u3053\u306e\u7af6\u4e89\u529b\u3092\u898b\u305b\u3066\u304a\u308a\u3001\u30d5\u30a7\u30eb\u30b9\u30bf\u30c3\u30da\u30f3\u304c\u9806\u8abf\u306b\u8d70\u3063\u3066\u3044\u308c\u3070\u3001\u3069\u3053\u307e\u3067\u30e1\u30eb\u30bb\u30c7\u30b9\u306b\u8089\u8584\u3067\u304d\u305f\u304b\u306f\u672a\u77e5\u6570\u3002\u4e88\u9078\u30fb\u6c7a\u52dd\u304c\u697d\u3057\u307f\u3060\u3002<\/p>\n\n\n\n<p>\u3000\u4e2d\u56e3\u52e2\u306f\u975e\u5e38\u306b\u63a5\u6226\u3067\u3001\u30a2\u30eb\u30d4\u30fc\u30cc\u3084\u30cf\u30fc\u30b9\u3001RB\u3089\u304c\u56e3\u5b50\u72b6\u614b\u3068\u306a\u3063\u3066\u3044\u308b\u3002<\/p>\n\n\n\n<p>\u3000\u3068\u306f\u3044\u3048\u3001\u4eca\u5e74\u306f\u30a8\u30cd\u30eb\u30ae\u30fc\u30de\u30cd\u30b8\u30e1\u30f3\u30c8\u304c\u91cd\u8981\u306a\u30d5\u30a1\u30af\u30bf\u30fc\u3068\u306a\u3063\u3066\u304a\u308a\u3001\u5404\u8eca\u304c\u69d8\u3005\u306a\u65b9\u6cd5\u8ad6\u3092\u8a66\u3057\u3066\u3044\u305f\u3068\u8003\u3048\u3089\u308c\u308b\u3002\u7279\u306b\u30c1\u30fc\u30e0\u30e1\u30a4\u30c8\u9593\u3067\u65b9\u5411\u6027\u3092\u5206\u3051\u3066\u3044\u308b\u30c1\u30fc\u30e0\u3082\u591a\u3044\u3068\u8003\u3048\u3089\u308c\u3001\u6c7a\u52dd\u306b\u5411\u3051\u3066\u672a\u77e5\u6570\u306a\u90e8\u5206\u304c\u4f9d\u7136\u3068\u3057\u3066\u591a\u3044\u3002<\/p>\n\n\n\n<p class=\"has-text-align-right\">Takumi<\/p>\n<!-- AddThis Advanced Settings generic via filter on the_content --><!-- AddThis Share Buttons generic via filter on the_content -->","protected":false},"excerpt":{"rendered":"<p>\u3000\u4ee5\u4e0b\u306f\u3001\u5404\u8eca\u306e\u30ed\u30f3\u30b0\u30e9\u30f3\u30da\u30fc\u30b9\u3092\u793a\u3059\u30a4\u30f3\u30bf\u30e9\u30af\u30c6\u30a3\u30d6\u306a\u30b0\u30e9\u30d5\u3060\u3002\u30dc\u30bf\u30f3\u64cd\u4f5c\u3067\u898b\u305f\u3044\u30c9\u30e9\u30a4\u30d0\u30fc\u3060\u3051\u3092\u8868\u793a\u3067\u304d\u308b\u3002 Race Lap Time Interactive Graph Lap Times Drivers: Se [&hellip;]<!-- AddThis Advanced Settings generic via filter on get_the_excerpt --><!-- AddThis Share Buttons generic via filter on get_the_excerpt --><\/p>\n","protected":false},"author":1,"featured_media":16587,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-16581","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-uncategorized"],"aioseo_notices":[],"_links":{"self":[{"href":"https:\/\/f1-lap-time.com\/index.php?rest_route=\/wp\/v2\/posts\/16581","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/f1-lap-time.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/f1-lap-time.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/f1-lap-time.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/f1-lap-time.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=16581"}],"version-history":[{"count":7,"href":"https:\/\/f1-lap-time.com\/index.php?rest_route=\/wp\/v2\/posts\/16581\/revisions"}],"predecessor-version":[{"id":16590,"href":"https:\/\/f1-lap-time.com\/index.php?rest_route=\/wp\/v2\/posts\/16581\/revisions\/16590"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/f1-lap-time.com\/index.php?rest_route=\/wp\/v2\/media\/16587"}],"wp:attachment":[{"href":"https:\/\/f1-lap-time.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=16581"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/f1-lap-time.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=16581"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/f1-lap-time.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=16581"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}