I am trying to perform a spatial join of two sf shape files.I am losing all information from the second data set (i.e output_inmap
). Whichever dataset is placed second will return all NA values. Anyone know what could be happening?
output_inmap <- st_read("processed/ceidars_data_inmap.shp")
output_inmap <-st_transform(output_inmap, crs=3310)
unzip("census-tract.zip")
census_tracts <- st_read("census-tract/tl_2019_06_tract.shp")
st_transform(census_tracts, crs = 3310)
st_transform(output_inmap, crs = 3310)
TC_1<- st_join(census_tracts, output_inmap)
I am losing all information from the second data set (i.e output_inmap
). Whichever dataset is placed second will return all NA values. Anyone know what could be happening?