Sha256: 8f3e8294be7a90ff4b84c67256c01d9402b917295af8c1e322b92bedba7f1bf7
Contents?: true
Size: 343 Bytes
Versions: 24
Compression:
Stored size: 343 Bytes
Contents
module TF1Converter module Gpx class Trackpoint def initialize(xml_node) @node = xml_node end def lat @node.attribute('lat').value.strip end def long @node.attribute('lon').value.strip end def to_s "" << long << ',' << lat << ',0' end end end end
Version data entries
24 entries across 24 versions & 2 rubygems