Class: Tile
- Inherits:
-
Object
- Object
- Tile
- Defined in:
- lib/tiler/tile.rb
Instance Attribute Summary collapse
-
#file ⇒ Object
Returns the value of attribute file.
-
#x ⇒ Object
readonly
Returns the value of attribute x.
-
#y ⇒ Object
readonly
Returns the value of attribute y.
-
#z ⇒ Object
readonly
Returns the value of attribute z.
Instance Method Summary collapse
- #download ⇒ Object
- #downloaded? ⇒ Boolean
-
#initialize(args) ⇒ Tile
constructor
A new instance of Tile.
- #local_file_name ⇒ Object
- #remote_url ⇒ Object
Constructor Details
#initialize(args) ⇒ Tile
11 12 13 14 15 16 |
# File 'lib/tiler/tile.rb', line 11 def initialize(args) @x = args[:x] @y = args[:y] @z = args[:z] @source = args[:source] || "sattelite" end |
Instance Attribute Details
#file ⇒ Object
Returns the value of attribute file.
9 10 11 |
# File 'lib/tiler/tile.rb', line 9 def file @file end |
#x ⇒ Object (readonly)
Returns the value of attribute x.
7 8 9 |
# File 'lib/tiler/tile.rb', line 7 def x @x end |
#y ⇒ Object (readonly)
Returns the value of attribute y.
7 8 9 |
# File 'lib/tiler/tile.rb', line 7 def y @y end |
#z ⇒ Object (readonly)
Returns the value of attribute z.
7 8 9 |
# File 'lib/tiler/tile.rb', line 7 def z @z end |
Instance Method Details
#download ⇒ Object
22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
# File 'lib/tiler/tile.rb', line 22 def download uri = URI.parse(remote_url) Net::HTTP.start(uri.host, uri.port, :use_ssl => uri.scheme == 'https') do |http| resp = http.get(uri.path) file = Tempfile.new("x_#{x}_y_#{y}_z_#{z}", Dir.tmpdir, 'wb+') file.write(resp.body) file.flush puts "downloaded #{remote_url} to #{file.path}" @file = file @local_file_name = file.path file end end |
#downloaded? ⇒ Boolean
41 42 43 |
# File 'lib/tiler/tile.rb', line 41 def downloaded? !@local_file_name.nil? end |
#local_file_name ⇒ Object
37 38 39 |
# File 'lib/tiler/tile.rb', line 37 def local_file_name @local_file_name end |
#remote_url ⇒ Object
18 19 20 |
# File 'lib/tiler/tile.rb', line 18 def remote_url "https://khms0.google.com/kh/v=143&src=app&x=#{x}&y=#{y}&z=#{z.to_s}" end |