How to create a shapefile with median age of buildings by block How to create a shapefile with median age of buildings by block. Data is from NYSGIS which has been loaded into Postgres database. library(RPostgreSQL)library(tidyverse)library(sf)library(tigris) rm(list=ls())con <- DBI::dbConnect(RPostgres::Postgres(), dbname=βgisβ, host=βlocalhostβ, port=5432, user=βpostgresβ, password=βXXXXXXXXβ) bb <- blocks(βnyβ) %>% st_transform(26918) str_c(βselect yr_blt, st_transform(shape, 26918) as geom FROM nytax_ctr_pt WHERE yr_blt>0β) -> sqlyrblt <- st_read(con, query=sql) bb %>% st_intersection(yrblt) %>% st_drop_geometry() %>% group_by(GEOID20) %>% summarize(blockyr = median(yr_blt)) %>% inner_join(mb, bb) %>% write_sf(β/tmp/median-block.gpkgβ)
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. Ξ