Aydsko iRacing Data API
Show / Hide Table of Contents

Class SubsessionChartLap

Contains details about a particular lap for a particular driver suitable for creating a lap chart.

Inheritance
object
SubsessionLap
SubsessionChartLap
Inherited Members
SubsessionLap.GroupId
SubsessionLap.Name
SubsessionLap.CustomerId
SubsessionLap.DisplayName
SubsessionLap.LapNumber
SubsessionLap.FlagsRaw
SubsessionLap.Flags
SubsessionLap.Incident
SubsessionLap.SessionTime
SubsessionLap.SessionStartTime
SubsessionLap.LapTime
SubsessionLap.TeamFastestLap
SubsessionLap.PersonalBestLap
SubsessionLap.Helmet
SubsessionLap.LicenseLevel
SubsessionLap.CarNumber
SubsessionLap.LapEvents
SubsessionLap.AI
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Aydsko.iRacingData.Results
Assembly: Aydsko.iRacingData.dll
Syntax
public class SubsessionChartLap : SubsessionLap

Properties

FastestLap

Indicates if this lap time was the fastest lap of the race across all drivers.

Declaration
[JsonPropertyName("fastest_lap")]
public bool FastestLap { get; set; }
Property Value
Type Description
bool

Interval

If IntervalUnits is ms and IntervalRaw is available this returns the interval to the leader. Otherwise returns null.

Declaration
[JsonIgnore]
public TimeSpan? Interval { get; }
Property Value
Type Description
Nullable
Remarks

There's no reasonable value that can be used to return a value here for lapped cars so if the interval is a lap count we just return null.

IntervalRaw

Contains the value of the interval at the end of this lap to the leader.

Declaration
[JsonPropertyName("interval")]
public long? IntervalRaw { get; set; }
Property Value
Type Description
long?

IntervalUnits

Describes the unit for the IntervalRaw value. Can be either ms for milliseconds or lap if the interval is one or more laps.

Declaration
[JsonPropertyName("interval_units")]
public string IntervalUnits { get; set; }
Property Value
Type Description
string

LapPosition

Contains the position of the car at the end of this lap.

Declaration
[JsonPropertyName("lap_position")]
public int LapPosition { get; set; }
Property Value
Type Description
int
In this article
Back to top Generated by DocFX