3 # This piece of magic reads a GPX with SAX and spits out
6 # This would print every latitude value:
8 # gpx = OSM:GPXImporter.new('somefile.gpx')
9 # gpx.points {|p| puts p['latitude']}
12 require 'rexml/parsers/sax2parser'
20 def initialize(lat, lon, degrees_per_pixel, width, height)
21 #init me with your centre lat/lon, the number of degrees per pixel and the size of your image
24 @degrees_per_pixel = degrees_per_pixel
27 @dlon = width / 2 * degrees_per_pixel
28 @dlat = height / 2 * degrees_per_pixel * cos(@clat * PI / 180)
30 @tx = xsheet(@clon - @dlon)
31 @ty = ysheet(@clat - @dlat)
33 @bx = xsheet(@clon + @dlon)
34 @by = ysheet(@clat + @dlat)
38 #the following two functions will give you the x/y on the entire sheet
41 return 40008.0 / 360.0 * @degrees_per_pixel
45 log(tan(PI / 4 + (lat * PI / 180 / 2)))
52 #and these two will give you the right points on your image. all the constants can be reduced to speed things up. FIXME
55 return @height - ((ysheet(lat) - @ty) / (@by - @ty) * @height)
59 return ((xsheet(lon) - @tx) / (@bx - @tx) * @width)
65 # FIXME swap REXML for libXML
66 attr_reader :possible_points
67 attr_reader :actual_points
68 attr_reader :tracksegs
70 def initialize(filename)
78 file = File.new(@filename)
79 parser = REXML::Parsers::SAX2Parser.new( file )
89 parser.listen( :start_element, %w{ trkpt }) do |uri,localname,qname,attributes|
90 lat = attributes['lat'].to_f
91 lon = attributes['lon'].to_f
96 parser.listen( :characters, %w{ ele } ) do |text|
101 parser.listen( :characters, %w{ time } ) do |text|
102 if text && text != ''
103 date = Time.parse(text)
108 parser.listen( :end_element, %w{ trkseg } ) do |uri, localname, qname|
112 parser.listen( :end_element, %w{ trkpt } ) do |uri,localname,qname|
113 if gotlatlon && gotdate
114 ele = '0' unless gotele
115 if lat < 90 && lat > -90 && lon > -180 && lon < 180
117 yield Hash['latitude' => lat,'longitude' => lon,'timestamp' => date,'altitude' => ele,'segment' => @tracksegs]
127 def get_picture(min_lat, min_lon, max_lat, max_lon, num_points)
131 rat= Math.cos( ((max_lat + min_lat)/2.0) / 180.0 * 3.141592)
132 proj = OSM::Mercator.new((min_lat + max_lat) / 2, (max_lon + min_lon) / 2, (max_lat - min_lat) / width / rat, width, height)
137 gc = Magick::Draw.new
138 gc.stroke_linejoin('miter')
141 gc.rectangle(0,0,width,height)
154 px = proj.x(p['longitude'])
155 py = proj.y(p['latitude'])
157 images[n].stroke_width(1)
158 images[n].stroke('#BBBBBB')
159 images[n].fill('#BBBBBB')
160 images[n].line(px, py, oldpx, oldpy ) unless first
162 images[mm].stroke_width(3)
163 images[mm].stroke('#000000')
164 images[mm].fill('#000000')
165 images[mm].line(px, py, oldpx, oldpy ) unless first
168 if m > num_points.to_f / frames.to_f * (mm+1)
176 il = Magick::ImageList.new
179 canvas = Magick::Image.new(width, height) {
180 self.background_color = 'white'
183 images[n].draw(canvas)
186 canvas.format = 'GIF'
195 def get_icon(min_lat, min_lon, max_lat, max_lon)
198 rat= Math.cos( ((max_lat + min_lat)/2.0) / 180.0 * 3.141592)
199 proj = OSM::Mercator.new((min_lat + max_lat) / 2, (max_lon + min_lon) / 2, (max_lat - min_lat) / width / rat, width, height)
203 gc = Magick::Draw.new
204 gc.stroke_linejoin('miter')
216 px = proj.x(p['longitude'])
217 py = proj.y(p['latitude'])
218 gc.line(px, py, oldpx, oldpy ) unless first
224 canvas = Magick::Image.new(width, height) {
225 self.background_color = 'white'
231 canvas.format = 'GIF'
232 return canvas.to_blob
238 def initialize(description='OpenStreetMap GPS Traces')
239 @doc = XML::Document.new
240 @doc.encoding = 'UTF-8'
242 rss = XML::Node.new 'rss'
244 rss['version'] = "2.0"
245 rss['xmlns:geo'] = "http://www.w3.org/2003/01/geo/wgs84_pos#"
246 @channel = XML::Node.new 'channel'
248 title = XML::Node.new 'title'
249 title << 'OpenStreetMap GPS Traces'
251 description_el = XML::Node.new 'description'
252 @channel << description_el
254 description_el << description
255 link = XML::Node.new 'link'
256 link << 'http://www.openstreetmap.org/traces/'
258 image = XML::Node.new 'image'
260 url = XML::Node.new 'url'
261 url << 'http://www.openstreetmap.org/feeds/mag_map-rss2.0.png'
263 title = XML::Node.new 'title'
264 title << "OpenStreetMap"
266 width = XML::Node.new 'width'
269 height = XML::Node.new 'height'
272 link = XML::Node.new 'link'
273 link << 'http://www.openstreetmap.org/traces/'
277 def add(latitude=0, longitude=0, title_text='dummy title', url='http://www.example.com/', description_text='dummy description', timestamp=Time.now)
278 item = XML::Node.new 'item'
280 title = XML::Node.new 'title'
283 link = XML::Node.new 'link'
287 description = XML::Node.new 'description'
288 description << description_text
291 pubDate = XML::Node.new 'pubDate'
292 pubDate << timestamp.xmlschema
295 lat_el = XML::Node.new 'geo:lat'
296 lat_el << latitude.to_s
299 lon_el = XML::Node.new 'geo:lon'
300 lon_el << longitude.to_s