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 != ''
105 date = DateTime.parse(text)
112 parser.listen( :end_element, %w{ trkseg } ) do |uri, localname, qname|
116 parser.listen( :end_element, %w{ trkpt } ) do |uri,localname,qname|
117 if gotlatlon && gotdate
118 ele = '0' unless gotele
119 if lat < 90 && lat > -90 && lon > -180 && lon < 180
121 yield Hash['latitude' => lat, 'longitude' => lon, 'timestamp' => date, 'altitude' => ele, 'segment' => @tracksegs]
132 def get_picture(min_lat, min_lon, max_lat, max_lon, num_points)
133 #puts "getting picfor bbox #{min_lat},#{min_lon} - #{max_lat},#{max_lon}"
137 rat= Math.cos( ((max_lat + min_lat)/2.0) / 180.0 * 3.141592)
138 proj = OSM::Mercator.new((min_lat + max_lat) / 2, (max_lon + min_lon) / 2, (max_lat - min_lat) / width / rat, width, height)
143 gc = Magick::Draw.new
144 gc.stroke_linejoin('miter')
147 gc.rectangle(0,0,width,height)
160 px = proj.x(p['longitude'])
161 py = proj.y(p['latitude'])
163 images[n].stroke_width(1)
164 images[n].stroke('#BBBBBB')
165 images[n].fill('#BBBBBB')
166 # puts "A #{px},#{py} - #{oldpx},#{oldpy}"
167 images[n].line(px, py, oldpx, oldpy ) unless first
169 images[mm].stroke_width(3)
170 images[mm].stroke('#000000')
171 images[mm].fill('#000000')
172 images[mm].line(px, py, oldpx, oldpy ) unless first
173 # puts "B #{px},#{py} - #{oldpx},#{oldpy}"
175 if m > num_points.to_f / frames.to_f * (mm+1)
183 il = Magick::ImageList.new
186 canvas = Magick::Image.new(width, height) {
187 self.background_color = 'white'
190 images[n].draw(canvas)
193 canvas.format = 'GIF'
202 def get_icon(min_lat, min_lon, max_lat, max_lon)
203 #puts "getting icon for bbox #{min_lat},#{min_lon} - #{max_lat},#{max_lon}"
206 rat= Math.cos( ((max_lat + min_lat)/2.0) / 180.0 * 3.141592)
207 proj = OSM::Mercator.new((min_lat + max_lat) / 2, (max_lon + min_lon) / 2, (max_lat - min_lat) / width / rat, width, height)
211 gc = Magick::Draw.new
212 gc.stroke_linejoin('miter')
224 px = proj.x(p['longitude'])
225 py = proj.y(p['latitude'])
226 gc.line(px, py, oldpx, oldpy ) unless first
227 # puts "C #{px},#{py} - #{oldpx},#{oldpy}"
233 canvas = Magick::Image.new(width, height) {
234 self.background_color = 'white'
240 canvas.format = 'GIF'
241 return canvas.to_blob
249 # initialise with a base position
250 def initialize(lat, lon)
251 @lat = lat * PI / 180
252 @lon = lon * PI / 180
255 # get the distance from the base position to a given position
256 def distance(lat, lon)
259 return 6372.795 * 2 * asin(sqrt(sin((lat - @lat) / 2) ** 2 + cos(@lat) * cos(lat) * sin((lon - @lon)/2) ** 2))
262 # get the worst case bounds for a given radius from the base position
264 latradius = 2 * asin(sqrt(sin(radius / 6372.795 / 2) ** 2))
265 lonradius = 2 * asin(sqrt(sin(radius / 6372.795 / 2) ** 2 / cos(@lat) ** 2))
266 minlat = (@lat - latradius) * 180 / PI
267 maxlat = (@lat + latradius) * 180 / PI
268 minlon = (@lon - lonradius) * 180 / PI
269 maxlon = (@lon + lonradius) * 180 / PI
270 return { :minlat => minlat, :maxlat => maxlat, :minlon => minlon, :maxlon => maxlon }
275 def initialize(feed_title='OpenStreetMap GPS Traces', feed_description='OpenStreetMap GPS Traces', feed_url='http://www.openstreetmap.org/traces/')
276 @doc = XML::Document.new
277 @doc.encoding = 'UTF-8'
279 rss = XML::Node.new 'rss'
281 rss['version'] = "2.0"
282 rss['xmlns:geo'] = "http://www.w3.org/2003/01/geo/wgs84_pos#"
283 @channel = XML::Node.new 'channel'
285 title = XML::Node.new 'title'
288 description_el = XML::Node.new 'description'
289 @channel << description_el
291 description_el << feed_description
292 link = XML::Node.new 'link'
295 image = XML::Node.new 'image'
297 url = XML::Node.new 'url'
298 url << 'http://www.openstreetmap.org/feeds/mag_map-rss2.0.png'
300 title = XML::Node.new 'title'
301 title << "OpenStreetMap"
303 width = XML::Node.new 'width'
306 height = XML::Node.new 'height'
309 link = XML::Node.new 'link'
314 def add(latitude=0, longitude=0, title_text='dummy title', author_text='anonymous', url='http://www.example.com/', description_text='dummy description', timestamp=DateTime.now)
315 item = XML::Node.new 'item'
317 title = XML::Node.new 'title'
320 link = XML::Node.new 'link'
324 guid = XML::Node.new 'guid'
328 description = XML::Node.new 'description'
329 description << description_text
332 author = XML::Node.new 'author'
333 author << author_text
336 pubDate = XML::Node.new 'pubDate'
337 pubDate << timestamp.to_s(:rfc822)
341 lat_el = XML::Node.new 'geo:lat'
342 lat_el << latitude.to_s
347 lon_el = XML::Node.new 'geo:long'
348 lon_el << longitude.to_s
362 doc = XML::Document.new
363 doc.encoding = 'UTF-8'
364 root = XML::Node.new 'osm'
365 root['version'] = API_VERSION
366 root['generator'] = 'OpenStreetMap server'
372 def self.IPLocation(ip_address)
373 Timeout::timeout(4) do
374 Net::HTTP.start('api.hostip.info') do |http|
375 country = http.get("/country.php?ip=#{ip_address}").body
376 country = "GB" if country = "UK"
377 Net::HTTP.start('ws.geonames.org') do |http|
378 xml = REXML::Document.new(http.get("/countryInfo?country=#{country}").body)
379 xml.elements.each("geonames/country") do |ele|
380 minlon = ele.get_text("bBoxWest").to_s
381 minlat = ele.get_text("bBoxSouth").to_s
382 maxlon = ele.get_text("bBoxEast").to_s
383 maxlat = ele.get_text("bBoxNorth").to_s
384 return { :minlon => minlon, :minlat => minlat, :maxlon => maxlon, :maxlat => maxlat }