class SGS::TrackPoint

Store an individual track point.

Attributes

location[RW]
time[RW]

Public Class Methods

new(time = nil, location = nil) click to toggle source
# File lib/sgs/waypoint.rb, line 141
def initialize(time = nil, location = nil)
  @time = time ? time.clone : nil
  @location = location ? location.clone : nil
end