Skip to content

Commit

Permalink
Add missing tax columns (#609)
Browse files Browse the repository at this point in the history
  • Loading branch information
wrridgeway authored Oct 1, 2024
1 parent 70ac89b commit 3e4415b
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions socrata/column_transformations/parcel_universe.sql
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
replace(replace(`cook_municipality_num`, '[', ''), ']', '')
replace(replace(`cook_municipality_name`, '[', ''), ']', '')
replace(replace(`tax_municipality_num`, '[', ''), ']', '')
replace(replace(`tax_municipality_name`, '[', ''), ']', '')
replace(replace(`tax_school_elementary_district_num`, '[', ''), ']', '')
replace(replace(`tax_school_elementary_district_name`, '[', ''), ']', '')
replace(replace(`tax_school_secondary_district_num`, '[', ''), ']', '')
replace(replace(`tax_school_secondary_district_name`, '[', ''), ']', '')
replace(replace(`tax_school_unified_district_num`, '[', ''), ']', '')
replace(replace(`tax_school_unified_district_name`, '[', ''), ']', '')
replace(replace(`tax_community_college_district`, '[', ''), ']', '')
replace(replace(`tax_community_college_district_name`, '[', ''), ']', '')
replace(replace(`tax_fire_protection_district_num`, '[', ''), ']', '')
Expand All @@ -15,4 +21,5 @@ replace(replace(`tax_special_service_area_name`, '[', ''), ']', '')
replace(replace(`tax_tif_district_num`, '[', ''), ']', '')
replace(replace(`tax_tif_district_name`, '[', ''), ']', '')
left_pad(`pin`, 14, '0')
left_pad(`pin10`, 10, '0')
left_pad(`pin10`, 10, '0')

0 comments on commit 3e4415b

Please sign in to comment.