kbberendsen commited on
Commit
7c48fa6
·
1 Parent(s): cdd01f3

loading session and importing new packages

Browse files
Files changed (2) hide show
  1. cache/fastf1_http_cache.sqlite +3 -0
  2. f1.py +9 -1
cache/fastf1_http_cache.sqlite ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c8a3ed6eadafa347c498703cc61c7fa86144910a442efceeff8b0bc52e2f25fb
3
+ size 57344
f1.py CHANGED
@@ -1,6 +1,14 @@
1
  import fastf1 as ff1
 
 
 
 
 
2
 
3
  ff1.Cache.enable_cache('.\cache')
4
 
5
  session = ff1.get_session(2023, 'Austria', 'R')
6
- session.load()
 
 
 
 
1
  import fastf1 as ff1
2
+ import matplotlib.pyplot as plt
3
+ from matplotlib.collections import LineCollection
4
+ from matplotlib import cm
5
+ import numpy as np
6
+
7
 
8
  ff1.Cache.enable_cache('.\cache')
9
 
10
  session = ff1.get_session(2023, 'Austria', 'R')
11
+ session.load()
12
+
13
+ lap = session.laps.pick_fastest()
14
+ tel = lap.get_telemetry()