Fixing README formatting.
parent
287467de59
commit
2cc725d4cf
18
README
18
README
|
@ -1,8 +1,10 @@
|
|||
= GPX Gem
|
||||
|
||||
Copyright (C) 2006 Doug Fales
|
||||
Doug Fales mailto:doug@falesafeconsulting.com
|
||||
|
||||
== What It Does
|
||||
|
||||
This library reads GPX files and provides an API for reading and manipulating
|
||||
the data as objects. For more info on the GPX format, see
|
||||
http://www.topografix.com/gpx.asp.
|
||||
|
@ -14,19 +16,21 @@ the tracks and points in a file (such as distance, duration, average speed,
|
|||
etc).
|
||||
|
||||
== Examples
|
||||
|
||||
Reading a GPX file, and cropping its contents to a given area:
|
||||
gpx = GPX::GPXFile.new(:gpx_file => filename) # Read GPX file
|
||||
bounds = GPX::Bounds.new(params) # Create a rectangular area to crop
|
||||
gpx.crop(bounds) # Crop it
|
||||
gpx.write(filename) # Save it
|
||||
<tt>gpx = GPX::GPXFile.new(:gpx_file => filename) # Read GPX file</tt>
|
||||
<tt>bounds = GPX::Bounds.new(params) # Create a rectangular area to crop</tt>
|
||||
<tt>gpx.crop(bounds) # Crop it</tt>
|
||||
<tt>gpx.write(filename) # Save it</tt>
|
||||
|
||||
Converting a Magellan track log to GPX:
|
||||
if GPX::MagellanTrackLog::is_magellan_file?(filename)
|
||||
GPX::MagellanTrackLog::convert_to_gpx(filename, "#{filename}.gpx")
|
||||
end
|
||||
<tt>if GPX::MagellanTrackLog::is_magellan_file?(filename)</tt>
|
||||
<tt> GPX::MagellanTrackLog::convert_to_gpx(filename, "#{filename}.gpx")</tt>
|
||||
<tt>end</tt>
|
||||
|
||||
|
||||
== Notes
|
||||
|
||||
This library was written to bridge the gap between my Garmin Geko
|
||||
and my website, WalkingBoss.org (RIP). For that reason, it has always been more of a
|
||||
work-in-progress than an attempt at full GPX compliance. The track side of the
|
||||
|
|
Loading…
Reference in New Issue