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 BuildingsSuffolk339Saratoga131Monroe116Erie106Orange96Rockland88Westchester77Dutchess70Ontario69Albany48 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 Cancel replyYour email address will not be published. Required fields are marked *Comment * Name * Email * Website Save my name, email, and website in this browser for the next time I comment. Δ