Class: SpatialFeatures::Importers::Shapefile

Inherits:
Base
  • Object
show all
Defined in:
lib/spatial_features/importers/shapefile.rb

Instance Attribute Summary

Attributes inherited from Base

#errors

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Base

#features

Constructor Details

#initialize(data, *args, proj4: nil, **options) ⇒ Shapefile

Returns a new instance of Shapefile.



9
10
11
12
# File 'lib/spatial_features/importers/shapefile.rb', line 9

def initialize(data, *args, proj4: nil, **options)
  super(data, **options)
  @proj4 = proj4
end

Class Method Details

.create_all(data, **options) ⇒ Object



18
19
20
21
22
23
24
# File 'lib/spatial_features/importers/shapefile.rb', line 18

def self.create_all(data, **options)
  Download.open_each(data, unzip: [/\.shp$/], downcase: true).map do |file|
    new(file, **options)
  end
rescue Unzip::PathNotFound
  raise ImportError, INVALID_ARCHIVE
end

Instance Method Details

#cache_keyObject



14
15
16
# File 'lib/spatial_features/importers/shapefile.rb', line 14

def cache_key
  @cache_key ||= Digest::MD5.file(archive).to_s
end