This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
where("st_intersects(proj_shape_4326, ST_GeomFromText('#{shp.as_text}',4326))") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'shellwords' | |
require 'highline/import' | |
target_ext = ask("file extension to target (excluding the period)?") | |
output_ext = ask("output file extension? press enter to default to zip") | |
output_ext = output_ext.blank? ? "zip" : output_ext | |
files = Dir.glob("*.#{target_file_extension}") | |
files.each do |f| |
OlderNewer