Table of Contents

Class SegmentStream

Namespace
Tudormobile.Strava.Model
Assembly
Tudormobile.Strava.dll

Represents a stream of geographic coordinates (latitude/longitude pairs) for a segment in Strava.

public class SegmentStream : StreamBase
Inheritance
SegmentStream
Inherited Members

Remarks

Inherits common stream metadata from StreamBase. The Data property contains the time-series of LatLng points that define the segment's path.

Properties

Data

Gets or sets the list of latitude/longitude coordinate pairs for the segment stream.

public List<List<double>> Data { get; set; }

Property Value

List<List<double>>

Remarks

Each LatLng represents a point along the segment's route.

Points

Gets the geographic coordinates represented by this instance.

public List<LatLng> Points { get; }

Property Value

List<LatLng>