Skip to content

Instantly share code, notes, and snippets.

@clhenrick
Created August 27, 2015 14:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save clhenrick/16109fe9282f63967824 to your computer and use it in GitHub Desktop.
Save clhenrick/16109fe9282f63967824 to your computer and use it in GitHub Desktop.
421a_exempt_stabilzed
select sum(pluto_apts) apts_421a_in_pluto,
sum (registered_stabilized_apts) apts_421a_registered_stabilized
from exempt_stabilized;
apts_421a_in_pluto | apts_421a_registered_stabilized
--------------------+---------------------------------
79018 | 51312
/* find all properties with 421a or rent stabilization */
SELECT *
INTO rawdata_exempt_stabilized
FROM rawdata
WHERE lower(key) IN (
'new mult dwellings - 421a',
'j-51 alteration',
'421a (25 yr not cap',
'420c housing',
'421a (15 yr not cap)',
'new mult dwellings',
'421a (10 yr cap)',
'421a (20 yr not cap'
);
DROP TABLE IF EXISTS exempt_stabilized;
CREATE TABLE exempt_stabilized (
bbl BIGINT,
exemptions TEXT,
registered_stabilized_apts INT,
pluto_apts INT,
estimated_gross_income REAL,
estimated_expenses REAL
);
INSERT INTO exempt_stabilized
SELECT bbl, STRING_AGG(distinct key, ',')
FROM rawdata_exempt_stabilized
WHERE activitythrough = '2015-06-05'
AND lower(key) IN (
'new mult dwellings - 421a', '421a (25 yr not cap', '421a (15 yr not cap)', 'new mult dwellings'
'421a (10 yr cap)', '421a (20 yr not cap'
)
AND RIGHT(bbl::text, 4)::INT < 1000
GROUP BY bbl
ORDER BY bbl;
UPDATE exempt_stabilized xs
SET registered_stabilized_apts = "2014uc"
FROM joined
WHERE joined.ucbbl = xs.bbl AND
"2014est" = 'N';
UPDATE exempt_stabilized xs
SET pluto_apts = COALESCE(unitsres, unitstotal)
FROM "contrib/us/ny/nyc".pluto pl
WHERE pl.bbl = xs.bbl;
UPDATE exempt_stabilized xs
SET estimated_gross_income = value::real
FROM nopv
WHERE nopv.bbl = xs.bbl AND nopv.key = 'gross income';
UPDATE exempt_stabilized xs
SET estimated_expenses = value::real
FROM nopv
WHERE nopv.bbl = xs.bbl AND nopv.key = 'expenses';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment