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:

CountyNew Buildings
Suffolk339
Saratoga131
Monroe116
Erie106
Orange96
Rockland88
Westchester77
Dutchess70
Ontario69
Albany48

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)

Leave a Reply

Your email address will not be published. Required fields are marked *