Class: SpatialFeatures::Importers::Shapefile
- Defined in:
- lib/spatial_features/importers/shapefile.rb
Constant Summary collapse
- PROJ4_4326 =
'+proj=longlat +datum=WGS84 +no_defs'.freeze
Instance Attribute Summary
Attributes inherited from Base
#errors, #source_identifier, #warnings
Class Method Summary collapse
Instance Method Summary collapse
- #cache_key ⇒ Object
-
#initialize(data, proj4: nil, **options) ⇒ Shapefile
constructor
A new instance of Shapefile.
Methods inherited from Base
Constructor Details
#initialize(data, proj4: nil, **options) ⇒ Shapefile
Returns a new instance of Shapefile.
11 12 13 14 |
# File 'lib/spatial_features/importers/shapefile.rb', line 11 def initialize(data, proj4: nil, **) super(data, **) @proj4 = proj4 end |
Class Method Details
.create_all(data, **options) ⇒ Object
20 21 22 23 24 25 26 |
# File 'lib/spatial_features/importers/shapefile.rb', line 20 def self.create_all(data, **) Download.open_each(data, unzip: [/\.shp$/], downcase: true).map do |file| new(file, **) end rescue Unzip::PathNotFound raise ImportError, INVALID_ARCHIVE end |
Instance Method Details
#cache_key ⇒ Object
16 17 18 |
# File 'lib/spatial_features/importers/shapefile.rb', line 16 def cache_key @cache_key ||= Digest::MD5.file(archive).to_s end |