-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.rb
41 lines (31 loc) · 901 Bytes
/
app.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# encoding: UTF-8
require 'coffee-script'
require 'rgeo'
require 'rgeo-shapefile'
require 'json'
require 'sinatra'
require './lib.rb'
set :haml, :format => :html5
SHAPE_FILE_DIR = 'data/shapefiles/'
SHAPE_FILE = 'data/shapefiles/post_pl.shp'
LATLON_SERVICE = LatLon::Service.new(SHAPE_FILE)
get '/' do
haml :index
end
get '/app.js' do
coffee :app
end
get '/lonlat2info/:lat/:lon' do
begin
results = LATLON_SERVICE.latlon2info params[:lon].to_f, params[:lat].to_f
results.attributes.each_pair do |key,val|
results.attributes[key] = val.force_encoding('iso-8859-1').encode('utf-8') if val.is_a?(String)
end
convert_to_json results
rescue LatLon::NoRecordFound
{error: 'No Record found for that location'}.to_json
end
end
def convert_to_json result
begin result.attributes.to_json rescue {error: "Something went wrong with encoding... :)"}.to_json end
end