Skip to content

jeffhigham/joule

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

61 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Joule

Description

Joule is a Ruby library for parsing bicycle powermeter data.

The following formats are supported:

  • SRM (.srm)

  • PowerTap (.csv)

  • iBike (.csv)

  • Garmin (.tcx)

Install

sudo gem install joule

Usage

require 'joule'

parser = Joule::SRM::Parser.new(IO.read("sample_srm_file.srm"))
workout = parser.parse(
  :calculate_marker_values => true, 
  :calculate_peak_power_values => true, 
  :durations => [5, 300, 1200])

# data_points
workout.data_points.each { |v| 
  puts "--Data Point--"
  puts "Time: #{v.time}"
  puts "Power: #{v.power}"
}

# markers
workout.markers.each { |v| 
  puts "--Marker--"
  puts "Duration: #{v.duration_seconds}"
  puts "Average Power: #{v.average_power}"
  puts "Normalized Power: #{v.average_power}"
}

# peak_powers
workout.peak_powers.each { |v|
  puts "--Peak Power--"
  puts "Duration: #{v.duration}"
  puts "Peak Power: #{v.value}"
}

Dependencies

  • nokogiri >= 1.4.1

  • fastercsv >=1.4.0

License

(The MIT License)

Copyright © 2008 - 2010 Andrew Olson

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ‘Software’), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED ‘AS IS’, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

A Ruby library for parsing bicycle powermeter data.

Resources

Stars

Watchers

Forks

Packages

No packages published