us_geo 2.0.3 → 2.0.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 55d616e1859588fe10360c02f03f54425dd22131491d2dd3eed1562ed82a7db9
4
- data.tar.gz: 42d5621571038484a7f54da077af404f1261da7d7b98de8b011a2daf3435dd4c
3
+ metadata.gz: a6b963948f153ee9add87c2daa3d45fd79ec3ed1d79f156c94bec7cc8b9ca879
4
+ data.tar.gz: 69b5d532013234f466319b8fc52ba4ea1809579bedc663f80258c7fd80246fef
5
5
  SHA512:
6
- metadata.gz: 7f76c7eab9424153ea5872cdebd31baafd19987cefb13ad84f954d4f6822d4210267dbfd6b2b73a20e488d68c02dc947cc9bfcdd9c9dff156020a46efc2cf48b
7
- data.tar.gz: e3ebb26c9f666a072bf1d727bbe86873332288d698cee70999f22434077a46ada1e92b28a361330c317d2cd7c7c82c9a2583f3c9e3ff75d6ae5dc5edd8cd604a
6
+ metadata.gz: 51b285a6397f15652483f2c9f36eebbf423fa8ceb7b97fd672cb5361860e351333d562a6b36fb39388c21adb67ef4e7156ceaf1ccb88e727683fab5471ff8b1c
7
+ data.tar.gz: d3ff6ae39376c494ac87f4533f6aeee5017546547f56ac1a1bb1cb35f8ad84cfac89f41090792c494de889d31718db6fff15cecbb13f8eb39ad5ee4823e0ae84
data/CHANGELOG.md CHANGED
@@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
4
4
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5
5
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
 
7
+ ## 2.0.4
8
+
9
+ - Remove "Urbanized Area" from short name for urban areas.
10
+ - Fix short name for Louisville, KY in the in the CBSA's, CSA's, and Urban Areas to omit "Jefferson County" so it matches convention for other short names of only showing the major city.
11
+
12
+
13
+
7
14
  ## 2.0.3
8
15
 
9
16
  ### Added
data/VERSION CHANGED
@@ -1 +1 @@
1
- 2.0.3
1
+ 2.0.4
@@ -0,0 +1,58 @@
1
+ # frozen_string_literal: true
2
+
3
+ class FixShortNames < ActiveRecord::Migration[5.0]
4
+ def up
5
+ update <<~SQL
6
+ UPDATE us_geo_core_based_statistical_areas
7
+ SET short_name = 'Louisville, KY'
8
+ WHERE short_name = 'Louisville/Jefferson County, KY'
9
+ SQL
10
+
11
+ update <<~SQL
12
+ UPDATE us_geo_combined_statistical_areas
13
+ SET short_name = 'Louisville, KY'
14
+ WHERE short_name = 'Louisville/Jefferson County, KY'
15
+ SQL
16
+
17
+ update <<~SQL
18
+ UPDATE us_geo_urban_areas
19
+ SET short_name = 'Louisville, KY'
20
+ WHERE short_name = 'Louisville/Jefferson County, KY'
21
+ SQL
22
+
23
+ select_all("SELECT geoid, name, short_name FROM us_geo_urban_areas").each do |row|
24
+ name = row["name"].sub(/\s+Urban(?:ized)? (?:Area|Cluster)/, "")
25
+ city, state = name.split(", ", 2)
26
+ short_name = "#{city.split("-").first.split("/").first}, #{state.split("-").first}"
27
+ escaped_short_name = short_name.gsub("'", "''")
28
+
29
+ if short_name != row["short_name"]
30
+ update <<~SQL
31
+ UPDATE us_geo_urban_areas
32
+ SET short_name = '#{escaped_short_name}'
33
+ WHERE geoid = '#{row["geoid"]}'
34
+ SQL
35
+ end
36
+ end
37
+ end
38
+
39
+ def down
40
+ update <<~SQL
41
+ UPDATE us_geo_core_based_statistical_areas
42
+ SET short_name = 'Louisville/Jefferson County, KY'
43
+ WHERE short_name = 'Louisville, KY'
44
+ SQL
45
+
46
+ update <<~SQL
47
+ UPDATE us_geo_combined_statistical_areas
48
+ SET short_name = 'Louisville/Jefferson County, KY'
49
+ WHERE short_name = 'Louisville, KY'
50
+ SQL
51
+
52
+ update <<~SQL
53
+ UPDATE us_geo_urban_areas
54
+ SET short_name = 'Louisville/Jefferson County, KY'
55
+ WHERE short_name = 'Louisville, KY'
56
+ SQL
57
+ end
58
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: us_geo
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.3
4
+ version: 2.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian Durand
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-06-15 00:00:00.000000000 Z
11
+ date: 2023-06-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord
@@ -83,6 +83,7 @@ files:
83
83
  - db/migrate/20230417000500_allow_null_zcta_urban_areas_demographics.rb
84
84
  - db/migrate/20230417000600_add_additional_time_zone_name_to_counties.rb
85
85
  - db/migrate/20230426000100_add_index_on_zctas_geoids.rb
86
+ - db/migrate/20230620000100_fix_short_names.rb
86
87
  - db/schema.rb
87
88
  - explorer_app/.gitattributes
88
89
  - explorer_app/.gitignore