Sha256: 691f634b232f3f52ad48a1db7ddeebe960ebe1c9f5896f703d4d309d40cd131a
Contents?: true
Size: 553 Bytes
Versions: 17
Compression:
Stored size: 553 Bytes
Contents
module GeoConcerns module Processors module Vector class Shapefile < GeoConcerns::Processors::Vector::Base include GeoConcerns::Processors::Zip def self.encode(path, options, output_file) unzip(path, output_file) do |zip_path| case options[:label] when :thumbnail encode_vector(zip_path, output_file, options) when :display_vector reproject_vector(zip_path, output_file, options) end end end end end end end
Version data entries
17 entries across 17 versions & 1 rubygems