Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2024 Open Data Refresh #645

Draft
wants to merge 12 commits into
base: master
Choose a base branch
from
13 changes: 12 additions & 1 deletion socrata/column_transformations/parcel_sales.sql
Original file line number Diff line number Diff line change
@@ -1 +1,12 @@
left_pad(`pin`, 14, '0')
left_pad(`pin`, 14, '0')

CASE
WHEN (`deed_type` = "01") THEN "Warranty"
WHEN (`deed_type` = "02") THEN "Trustee"
WHEN (`deed_type` = "03") THEN "Quit claim"
WHEN (`deed_type` = "04") THEN "Executor"
WHEN (`deed_type` = "05") THEN "Other"
WHEN (`deed_type` = "06") THEN "Beneficiary"
WHEN (`deed_type` = "99") THEN "Unknown"
ELSE null
END
Loading
Loading