Class: Atig::OFilter::Geo

Inherits:
Object
  • Object
show all
Defined in:
lib/atig/ofilter/geo.rb

Instance Method Summary collapse

Constructor Details

#initialize(context) ⇒ Geo

Returns a new instance of Geo.



6
7
8
# File 'lib/atig/ofilter/geo.rb', line 6

def initialize(context)
  @opts = context.opts
end

Instance Method Details

#call(q) ⇒ Object



10
11
12
13
14
# File 'lib/atig/ofilter/geo.rb', line 10

def call(q)
  return q unless @opts.ll
  lat, long = @opts.ll.split(",", 2)
  q.merge :lat  => lat.to_f, :long => long.to_f
end