aqila-mapas 0.4.7 → 0.4.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d6fce2f7cd80a0ad57fa45f9135295600e04bd639c4359e86c00b75afe05f522
4
- data.tar.gz: e4030db8d53c17a6b32bd36742584596f9dbe9be48355d0e24fe493dc80ca1cd
3
+ metadata.gz: e406ae5357f51c1506f762aee0167b6d00709aa8b17eef21be33fccdfa74f8a6
4
+ data.tar.gz: 0a69f0ea6367605a84d281612ec036cab176eddc0f5a0d3c15574ac2d22e56b3
5
5
  SHA512:
6
- metadata.gz: '08591b8107f70c8e2f66700783c56b41fd90e771359b73f0b5dfbb52ac814ab1b56a85602bf7698f595ffb9d0ae43e3449e47d3b2891de964380ad9e43f8dc63'
7
- data.tar.gz: 5220c696138f3dcf555eb414916684a709d48ed7d68bcd744c3430403e570551f2e68d3194c4c5677703251a3bedfd1ee2b4e9ffdb898a2a60e08ab4105500ab
6
+ metadata.gz: 7678ba4d7f1f88fc9278d3b4761c4dc0fbd8b9cba8528e7eb74551b4023856e525d5897e26ee4da51e8b8dd1354f954475ee55761eb3d56d9e505967b3327f2e
7
+ data.tar.gz: 7b9fbdaddb23d20c6bae237099cec337b3a1bdd762bcda35d959505823b469fd8ad977f30e367b3a677de62c3c943985a91ccee06ef5d2e174c89ba8d23f73f1
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- aqila-mapas (0.4.7)
4
+ aqila-mapas (0.4.9)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Aqila
4
4
  module Mapas
5
- VERSION = '0.4.7'
5
+ VERSION = '0.4.9'
6
6
  end
7
7
  end
@@ -13,7 +13,7 @@ class Map::DownloadTilesService
13
13
  'http://c.tile.openstreetmap.org'
14
14
  ].freeze
15
15
  MAP_BOX_SERVER = 'https://api.mapbox.com/styles/v1/mapbox/satellite-v9/tiles/256'
16
- MAP_BOX_TOKEN = 'pk.eyJ1IjoiaW5vdmFjYW8tYWdybzEiLCJhIjoiY2xneHhwdXZ0MDN5OTNpcXF3dTd0dHJwOCJ9.kZoathkPpmDuuc1nDROauA'
16
+ MAP_BOX_TOKEN = 'pk.eyJ1IjoiaW5vdmFjYW8tYWdybzEiLCJhIjoiY2xoczRiNGx1MnVucTNkcGJ5cXN6bTZtMCJ9.0tT_B-kqD_GL0-VKvY15iw'
17
17
 
18
18
  def initialize(options = {})
19
19
  @zoom_min = options[:zoom] || options[:zoom_min]
@@ -49,14 +49,17 @@ class Map::DownloadTilesService
49
49
  private
50
50
 
51
51
  def valid_file?(file_name)
52
- File.exist?(file_name) && File.size(file_name) > MIN_FILE_SIZE
52
+ matching_files = Dir.glob("**/#{file_name}")
53
+ matching_files.any? && File.size(matching_files.first) > MIN_FILE_SIZE
53
54
  end
54
55
 
55
56
  def get_tile(points, zoom)
56
57
  dir = "#{@output_directory}/#{zoom}/#{points.first}"
57
58
  file_name = "#{dir}/#{points.second}.jpg"
59
+ Rails.logger.info "Baixando tile: #{file_name}"
58
60
 
59
- return file_name if valid_file?(file_name)
61
+ # file_name.match(/-/) - retorna o nome do arquivo caso tenha algum "-" no nome
62
+ return file_name if file_name.match(/-/) || valid_file?(file_name)
60
63
 
61
64
  FileUtils.mkdir_p(dir)
62
65
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aqila-mapas
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.7
4
+ version: 0.4.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - lucasferronato
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-05-18 00:00:00.000000000 Z
11
+ date: 2023-05-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler