app/processors/geo_concerns/processors/vector/shapefile.rb in geo_concerns-0.0.1 vs app/processors/geo_concerns/processors/vector/shapefile.rb in geo_concerns-0.0.2
- old
+ new
@@ -6,12 +6,12 @@
def self.encode(path, options, output_file)
unzip(path, output_file) do |zip_path|
case options[:label]
when :thumbnail
- encode_vector(zip_path, options, output_file)
+ encode_vector(zip_path, output_file, options)
when :display_vector
- reproject_vector(zip_path, options, output_file)
+ reproject_vector(zip_path, output_file, options)
end
end
end
end
end