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
25 @degrees_per_pixel = 0.0000000001 if @degrees_per_pixel < 0.0000000001
28 @dlon = width / 2 * @degrees_per_pixel
29 @dlat = height / 2 * @degrees_per_pixel * cos(@clat * PI / 180)
31 @tx = xsheet(@clon - @dlon)
32 @ty = ysheet(@clat - @dlat)
34 @bx = xsheet(@clon + @dlon)
35 @by = ysheet(@clat + @dlat)
39 #the following two functions will give you the x/y on the entire sheet
42 return 40008.0 / 360.0 * @degrees_per_pixel
46 log(tan(PI / 4 + (lat * PI / 180 / 2)))
53 #and these two will give you the right points on your image. all the constants can be reduced to speed things up. FIXME
56 return @height - ((ysheet(lat) - @ty) / (@by - @ty) * @height)
60 return ((xsheet(lon) - @tx) / (@bx - @tx) * @width)
66 # FIXME swap REXML for libXML
67 attr_reader :possible_points
68 attr_reader :actual_points
69 attr_reader :tracksegs
71 def initialize(filename)
83 date = DateTime.now();
88 parser = REXML::Parsers::SAX2Parser.new(File.new(@filename))
90 parser.listen( :start_element, %w{ trkpt }) do |uri,localname,qname,attributes|
91 lat = attributes['lat'].to_f
92 lon = attributes['lon'].to_f
97 parser.listen( :characters, %w{ ele } ) do |text|
102 parser.listen( :characters, %w{ time } ) do |text|
103 if text && text != ''
104 date = DateTime.parse(text)
109 parser.listen( :end_element, %w{ trkseg } ) do |uri, localname, qname|
113 parser.listen( :end_element, %w{ trkpt } ) do |uri,localname,qname|
114 if gotlatlon && gotdate
115 ele = '0' unless gotele
116 if lat < 90 && lat > -90 && lon > -180 && lon < 180
118 yield Hash['latitude' => lat, 'longitude' => lon, 'timestamp' => date, 'altitude' => ele, 'segment' => @tracksegs]
129 def get_picture(min_lat, min_lon, max_lat, max_lon, num_points)
130 #puts "getting picfor bbox #{min_lat},#{min_lon} - #{max_lat},#{max_lon}"
134 rat= Math.cos( ((max_lat + min_lat)/2.0) / 180.0 * 3.141592)
135 proj = OSM::Mercator.new((min_lat + max_lat) / 2, (max_lon + min_lon) / 2, (max_lat - min_lat) / width / rat, width, height)
140 gc = Magick::Draw.new
141 gc.stroke_linejoin('miter')
144 gc.rectangle(0,0,width,height)
157 px = proj.x(p['longitude'])
158 py = proj.y(p['latitude'])
160 images[n].stroke_width(1)
161 images[n].stroke('#BBBBBB')
162 images[n].fill('#BBBBBB')
163 # puts "A #{px},#{py} - #{oldpx},#{oldpy}"
164 images[n].line(px, py, oldpx, oldpy ) unless first
166 images[mm].stroke_width(3)
167 images[mm].stroke('#000000')
168 images[mm].fill('#000000')
169 images[mm].line(px, py, oldpx, oldpy ) unless first
170 # puts "B #{px},#{py} - #{oldpx},#{oldpy}"
172 if m > num_points.to_f / frames.to_f * (mm+1)
180 il = Magick::ImageList.new
183 canvas = Magick::Image.new(width, height) {
184 self.background_color = 'white'
187 images[n].draw(canvas)
190 canvas.format = 'GIF'
199 def get_icon(min_lat, min_lon, max_lat, max_lon)
200 #puts "getting icon for bbox #{min_lat},#{min_lon} - #{max_lat},#{max_lon}"
203 rat= Math.cos( ((max_lat + min_lat)/2.0) / 180.0 * 3.141592)
204 proj = OSM::Mercator.new((min_lat + max_lat) / 2, (max_lon + min_lon) / 2, (max_lat - min_lat) / width / rat, width, height)
208 gc = Magick::Draw.new
209 gc.stroke_linejoin('miter')
221 px = proj.x(p['longitude'])
222 py = proj.y(p['latitude'])
223 gc.line(px, py, oldpx, oldpy ) unless first
224 # puts "C #{px},#{py} - #{oldpx},#{oldpy}"
230 canvas = Magick::Image.new(width, height) {
231 self.background_color = 'white'
237 canvas.format = 'GIF'
238 return canvas.to_blob
246 # initialise with a base position
247 def initialize(lat, lon)
248 @lat = lat * PI / 180
249 @lon = lon * PI / 180
252 # get the distance from the base position to a given position
253 def distance(lat, lon)
256 return 6372.795 * 2 * asin(sqrt(sin((lat - @lat) / 2) ** 2 + cos(@lat) * cos(lat) * sin((lon - @lon)/2) ** 2))
259 # get the worst case bounds for a given radius from the base position
261 latradius = 2 * asin(sqrt(sin(radius / 6372.795 / 2) ** 2))
262 lonradius = 2 * asin(sqrt(sin(radius / 6372.795 / 2) ** 2 / cos(@lat) ** 2))
263 minlat = (@lat - latradius) * 180 / PI
264 maxlat = (@lat + latradius) * 180 / PI
265 minlon = (@lon - lonradius) * 180 / PI
266 maxlon = (@lon + lonradius) * 180 / PI
267 return { :minlat => minlat, :maxlat => maxlat, :minlon => minlon, :maxlon => maxlon }
272 def initialize(feed_title='OpenStreetMap GPS Traces', feed_description='OpenStreetMap GPS Traces', feed_url='http://www.openstreetmap.org/traces/')
273 @doc = XML::Document.new
274 @doc.encoding = 'UTF-8'
276 rss = XML::Node.new 'rss'
278 rss['version'] = "2.0"
279 rss['xmlns:geo'] = "http://www.w3.org/2003/01/geo/wgs84_pos#"
280 @channel = XML::Node.new 'channel'
282 title = XML::Node.new 'title'
285 description_el = XML::Node.new 'description'
286 @channel << description_el
288 description_el << feed_description
289 link = XML::Node.new 'link'
292 image = XML::Node.new 'image'
294 url = XML::Node.new 'url'
295 url << 'http://www.openstreetmap.org/feeds/mag_map-rss2.0.png'
297 title = XML::Node.new 'title'
298 title << "OpenStreetMap"
300 width = XML::Node.new 'width'
303 height = XML::Node.new 'height'
306 link = XML::Node.new 'link'
311 def add(latitude=0, longitude=0, title_text='dummy title', url='http://www.example.com/', description_text='dummy description', timestamp=DateTime.now)
312 item = XML::Node.new 'item'
314 title = XML::Node.new 'title'
317 link = XML::Node.new 'link'
321 guid = XML::Node.new 'guid'
325 description = XML::Node.new 'description'
326 description << description_text
329 pubDate = XML::Node.new 'pubDate'
330 pubDate << timestamp.to_s(:rfc822)
334 lat_el = XML::Node.new 'geo:lat'
335 lat_el << latitude.to_s
340 lon_el = XML::Node.new 'geo:long'
341 lon_el << longitude.to_s
355 doc = XML::Document.new
356 doc.encoding = 'UTF-8'
357 root = XML::Node.new 'osm'
358 root['version'] = API_VERSION
359 root['generator'] = 'OpenStreetMap server'