br_db 0.1.8 → 0.1.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/jobs/br_db/load_zip_codes_job.rb +28 -28
- data/lib/br_db/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7dd54dd60526af2f78f09d1f23caf6cf0d310b50e098977298ff616b49a3ede9
|
4
|
+
data.tar.gz: 7a6dd6e32168b91faed65248f9531e4c2414a5c40d2dbf6640774f6e1347c0aa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3cdbd69b0f47f9d0db2b9ad205de047c4cd9fb8822bfc2344e09c12ce3f23cf5667982b6fc597b3eb131c67faeed7a5848f01141f390bfc6009dac641489b86b
|
7
|
+
data.tar.gz: b2feb4231b9d67353f9104fd4eb3caeaf320f5eaf98ecd94b8b51d6439d6051eb942251513e7e733b086c0829ee03c6f4c86b309650b1e4582f6c8fc323a43a0
|
@@ -68,36 +68,36 @@ module BrDb
|
|
68
68
|
end
|
69
69
|
|
70
70
|
def import_zip_codes
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
71
|
+
Rails.application.reloader.wrap do
|
72
|
+
# The file name is log_logradouro_SC.txt or log_logradouro_SP.txt
|
73
|
+
csv_file_path_regex = /log_logradouro_(\w\w).txt/
|
74
|
+
path = DELIMITADO_FILE_PATH
|
75
|
+
city_mapping = get_data_map("log_localidade.txt", 2, 8)
|
76
|
+
neighborhood_mapping = get_data_map("log_bairro.txt", 3, 3)
|
77
|
+
|
78
|
+
zip_codes = []
|
79
|
+
# iterate over the csv files that match the regex pattern
|
80
|
+
Dir.glob(path.join("**", "*.txt")).each do |file_path|
|
81
|
+
next unless csv_file_path_regex.match?(file_path)
|
82
|
+
CSV.foreach(file_path, liberal_parsing: true, col_sep: DELIMITER, headers: false, encoding: ENCODING, quote_char: QUOTE_CHARS.shift) do |row|
|
83
|
+
street_name = row[8] + " " + row[5]
|
84
|
+
zip_codes << {
|
85
|
+
state_code: row[1],
|
86
|
+
neighborhood_name: neighborhood_mapping[row[3]],
|
87
|
+
street_name: street_name,
|
88
|
+
city_name: city_mapping[row[2]][0],
|
89
|
+
city_code: city_mapping[row[2]][1],
|
90
|
+
street_additional_info: row[6],
|
91
|
+
zip_code: row[7]
|
92
|
+
}
|
93
|
+
end
|
94
|
+
if zip_codes.count % 1_000 == 0
|
95
|
+
ZipCode.insert_all(zip_codes)
|
96
|
+
zip_codes = []
|
97
|
+
end
|
97
98
|
end
|
99
|
+
ZipCode.insert_all(zip_codes)
|
98
100
|
end
|
99
|
-
ActiveRecord::Base.connection.reconnect!
|
100
|
-
ZipCode.insert_all(zip_codes)
|
101
101
|
end
|
102
102
|
|
103
103
|
def import_city_zip_codes
|
data/lib/br_db/version.rb
CHANGED