According to state tax records, 1,813 buildings were constructed in New York State in 2020
According to state tax records, 1,813 buildings were constructed in New York State in 2020.
Here are top 10 counties for new buildings:
County | New Buildings |
Suffolk | 339 |
Saratoga | 131 |
Monroe | 116 |
Erie | 106 |
Orange | 96 |
Rockland | 88 |
Westchester | 77 |
Dutchess | 70 |
Ontario | 69 |
Albany | 48 |
Make this list yourself in Python:
from arcgis.features import FeatureLayer
lyr_url = 'https://gisservices.its.ny.gov/arcgis/rest/services/NYS_Tax_Parcel_Centroid_Points/MapServer/0'
layer = FeatureLayer(lyr_url)
q= layer.query(where="YR_BLT=2020", out_fields='PARCEL_ADDR,CITYTOWN_NAME,COUNTY_NAME', out_sr='4326')
q.sdf.groupby(by='COUNTY_NAME').count()['PARCEL_ADDR'].sort_values(ascending=False).head(10)