You will need to knit it, publish it on Rpubs, and submit the link. If there is any question about this template, do not hesitate to reach out to Bonwoo.
There are a few main components in this assignment - home location, road networks, transit network, and destination. We will simulate a journey that starts from the starting point (e.g., home), drives to nearest MARTA rail station, transfers to MARTA rail transit, and finally arrives at Midtown station (i.e., an employment center). The following is a list of tasks and data we need for this analysis.
Step 1. Download Required data from GTFS. Convert it to sf format, extract MARTA rail stations, and clean the stop names to delete duplicate names. Also extract the destination station.
Step 2. Download Required data from Census. Convert Census polygons into centroids and subsetting.
Step 3. Download Required data from OSM. Convert it to sfnetwork object and clean the network.
Step 4. Try the simulation for just one home location as a pilot test.
Step 5. Convert the steps we identified in Step 4 into a function so that we can use it to repeat it in a loop.
Step 6. Run a loop to repeat what we did in Step 5 to all other home location using the function from Step 6. Once finished, merge the simulation output back to Census data.
Step 7. Finally, examine whether there is any disparity in using transit to commute to midtown.
Before we start, libraries first..
library(tidyverse)
## ── Attaching packages ─────────────────────────────────────── tidyverse 1.3.2 ──
## ✔ ggplot2 3.3.6 ✔ purrr 0.3.4
## ✔ tibble 3.1.8 ✔ dplyr 1.0.9
## ✔ tidyr 1.2.0 ✔ stringr 1.4.0
## ✔ readr 2.1.2 ✔ forcats 0.5.1
## ── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
## ✖ dplyr::filter() masks stats::filter()
## ✖ dplyr::lag() masks stats::lag()
library(tmap)
library(ggplot2)
library(units)
## udunits database from C:/Program Files/R/R-4.2.1/library/units/share/udunits/udunits2.xml
library(sf)
## Linking to GEOS 3.9.1, GDAL 3.4.3, PROJ 7.2.1; sf_use_s2() is TRUE
library(leaflet)
library(tidycensus)
library(leafsync)
library(dbscan)
library(sfnetworks)
library(tigris)
## To enable caching of data, set `options(tigris_use_cache = TRUE)`
## in your R script or .Rprofile.
library(tidygraph)
##
## Attaching package: 'tidygraph'
##
## The following object is masked from 'package:stats':
##
## filter
library(plotly)
##
## Attaching package: 'plotly'
##
## The following object is masked from 'package:ggplot2':
##
## last_plot
##
## The following object is masked from 'package:stats':
##
## filter
##
## The following object is masked from 'package:graphics':
##
## layout
library(osmdata)
## Data (c) OpenStreetMap contributors, ODbL 1.0. https://www.openstreetmap.org/copyright
library(here)
## here() starts at C:/Users/sbaghel3/Downloads
library(tidytransit)
library(units)
library(leaflet)
library(tidycensus)
library(leafsync)
library(dotenv)
epsg <- 4326
# TASK ////////////////////////////////////////////////////////////////////////
# Download GTFS data from Canvas > Files > MARTA_GTFS_Latest_Feed.zip and save it in your hard drive. Read the file using `read_gtfs()` function and assign it in `gtfs` object
gtfs <- read_gtfs(here('MARTA_GTFS_Latest_Feed.zip'))
typeof(gtfs)
## [1] "list"
names(gtfs)
## [1] "agency" "calendar" "calendar_dates" "routes"
## [5] "shapes" "stop_times" "stops" "trips"
## [9] "."
print(head(gtfs))
## $agency
## # A tibble: 1 × 7
## agency_id agency_name agenc…¹ agenc…² agenc…³ agenc…⁴ agenc…⁵
## <chr> <chr> <chr> <chr> <chr> <chr> <chr>
## 1 MARTA Metropolitan Atlanta Rapid … http:/… Americ… en (404)8… custse…
## # … with abbreviated variable names ¹agency_url, ²agency_timezone,
## # ³agency_lang, ⁴agency_phone, ⁵agency_email
##
## $calendar
## # A tibble: 4 × 10
## service_id monday tuesday wednesday thursday friday saturday sunday start_date
## <chr> <int> <int> <int> <int> <int> <int> <int> <date>
## 1 2 0 0 0 0 0 0 0 2021-08-14
## 2 3 0 0 0 0 0 1 0 2021-08-14
## 3 4 0 0 0 0 0 0 1 2021-08-14
## 4 5 1 1 1 1 1 0 0 2021-08-14
## # … with 1 more variable: end_date <date>
## # ℹ Use `colnames()` to see all variable names
##
## $calendar_dates
## # A tibble: 3 × 3
## service_id date exception_type
## <chr> <date> <int>
## 1 5 2021-09-06 2
## 2 5 2021-11-25 2
## 3 5 2021-11-26 2
##
## $routes
## # A tibble: 118 × 8
## route_id route_short_name route_lon…¹ route…² route…³ route…⁴ route…⁵ route…⁶
## <chr> <chr> <chr> <chr> <int> <chr> <chr> <chr>
## 1 15664 1 Marietta B… "" 3 https:… FF00FF ""
## 2 15665 2 Ponce de L… "" 3 https:… 008000 ""
## 3 15666 3 Martin Lut… "" 3 https:… FF8000 ""
## 4 15667 4 Moreland A… "" 3 https:… FF00FF ""
## 5 15668 5 Piedmont R… "" 3 https:… 00FFFF ""
## 6 15669 6 Clifton Ro… "" 3 https:… 008080 ""
## 7 15670 8 North Drui… "" 3 https:… 008000 ""
## 8 15671 9 Boulevard … "" 3 https:… 00FFFF ""
## 9 15672 12 Howell Mil… "" 3 https:… FF00FF ""
## 10 15673 14 14th Stree… "" 3 https:… 00FF00 ""
## # … with 108 more rows, and abbreviated variable names ¹route_long_name,
## # ²route_desc, ³route_type, ⁴route_url, ⁵route_color, ⁶route_text_color
## # ℹ Use `print(n = ...)` to see more rows
##
## $shapes
## # A tibble: 370,776 × 4
## shape_id shape_pt_lat shape_pt_lon shape_pt_sequence
## <chr> <dbl> <dbl> <int>
## 1 119402 33.8 -84.6 1
## 2 119402 33.8 -84.6 2
## 3 119402 33.8 -84.6 3
## 4 119402 33.8 -84.6 4
## 5 119402 33.8 -84.6 5
## 6 119402 33.8 -84.6 6
## 7 119402 33.8 -84.6 7
## 8 119402 33.8 -84.6 8
## 9 119402 33.8 -84.6 9
## 10 119402 33.8 -84.6 10
## # … with 370,766 more rows
## # ℹ Use `print(n = ...)` to see more rows
##
## $stop_times
## # A tibble: 1,033,990 × 5
## trip_id arrival_time departure_time stop_id stop_sequence
## <chr> <time> <time> <chr> <int>
## 1 8044645 14:35:00 14:35:00 903320 1
## 2 8044645 14:36:02 14:36:02 903448 2
## 3 8044645 14:36:51 14:36:51 901144 3
## 4 8044645 14:37:43 14:37:43 904219 4
## 5 8044645 14:38:19 14:38:19 903850 5
## 6 8044645 14:38:39 14:38:39 903664 6
## 7 8044645 14:39:39 14:39:39 213268 7
## 8 8044645 14:40:12 14:40:12 213101 8
## 9 8044645 14:41:35 14:41:35 212926 9
## 10 8044645 14:41:53 14:41:53 211886 10
## # … with 1,033,980 more rows
## # ℹ Use `print(n = ...)` to see more rows
# **YOUR CODE HERE..**
# //TASK //////////////////////////////////////////////////////////////////////
# =========== NO MODIFICATION ZONE STARTS HERE ===============================
# Edit stop_name to append serial numbers (1, 2, etc.) to remove duplicate names
stop_dist <- stop_group_distances(gtfs$stops, by='stop_name') %>%
filter(dist_max > 200)
gtfs$stops <- gtfs$stops %>%
group_by(stop_name) %>%
mutate(stop_name = case_when(stop_name %in% stop_dist$stop_name ~ paste0(stop_name, " (", seq(1,n()), ")"),
TRUE ~ stop_name))
# Create a transfer table
gtfs$transfers <- gtfsrouter::gtfs_transfer_table(gtfs,
d_limit = 200,
min_transfer_time = 120)
## Registered S3 method overwritten by 'gtfsrouter':
## method from
## summary.gtfs gtfsio
## ▶ Finding neighbouring services for each stop
## Loading required namespace: pbapply
## ✔ Found neighbouring services for each stop
## ▶ Expanding to include in-place transfers
## ✔ Expanded to include in-place transfers
# NOTE: Converting to sf format uses stop_lat and stop_lon columns contained in gtfs$stops.
# In the conversion process, stop_lat and stop_lon are converted into a geometry column, and
# the output sf object do not have the lat lon column anymore.
# But many other functions in tidytransit look for stop_lat and stop_lon.
# So I re-create them using mutate().
gtfs <- gtfs %>% gtfs_as_sf(crs = epsg)
gtfs$stops <- gtfs$stops %>%
ungroup() %>%
mutate(stop_lat = st_coordinates(.)[,2],
stop_lon = st_coordinates(.)[,1])
# Get stop_id for rails and buses
rail_stops <- gtfs$routes %>%
filter(route_type %in% c(1)) %>%
inner_join(gtfs$trips, by = "route_id") %>%
inner_join(gtfs$stop_times, by = "trip_id") %>%
inner_join(gtfs$stops, by = "stop_id") %>%
group_by(stop_id) %>%
slice(1) %>%
pull(stop_id)
# Extract MARTA rail stations
station <- gtfs$stops %>% filter(stop_id %in% rail_stops)
# Extract Midtown Station
midtown <- gtfs$stops %>% filter(stop_code == "134")
# Create a bounding box for MARTA rail transit and
# draw 5 mile buffer around it.
# This buffer will be the area to which we limit our analysis
bbox <- gtfs$stops %>% ungroup() %>%
filter(stop_id %in% rail_stops) %>%
st_bbox() %>% st_as_sfc() %>%
st_buffer(set_units(5, mile)) %>%
st_bbox()
# =========== NO MODIFY ZONE ENDS HERE ========================================
# TASK ////////////////////////////////////////////////////////////////////////
# Specify Census API key whichever you prefer using census_api_key() function
#load_dot_env("cred.env")
Sys.getenv("census_api_key")
## [1] "09321c781893fd01cfb3a20f042a4788f5019134"
census_api_key(Sys.getenv("census_api_key"), install = TRUE, overwrite = TRUE)
## Your original .Renviron will be backed up and stored in your R HOME directory if needed.
## Your API key has been stored in your .Renviron and can be accessed by Sys.getenv("CENSUS_API_KEY").
## To use now, restart R or run `readRenviron("~/.Renviron")`
## [1] "09321c781893fd01cfb3a20f042a4788f5019134"
# //TASK //////////////////////////////////////////////////////////////////////
# TASK ////////////////////////////////////////////////////////////////////////
# Using get_acs() function, download Census Tract level data for 2020 for Fulton, DeKalb, and Clayton in GA.
# and assign it into `census` object.
# Make sure you set geometry = TRUE.
# variables to download = c("hhinc" = 'B19013_001',
# "r_tot" = "B02001_001",
# "r_wh" = "B02001_002",
# "r_bl" = "B02001_003",
# "tot_hh" = "B25044_001",
# "own_novhc" = "B25044_003",
# "rent_novhc" = "B25044_010")
census <- suppressMessages(
get_acs(geography = "tract", # or "block group", "county", "state" etc.
state = "GA",
county = c("Fulton", "Dekalb", "Clayton"),
variables = c(#hhincome = 'B19019_001',
#race.tot = "B02001_001",
#race.white = "B02001_002",
#race.black = 'B02001_003',
"hhinc" = 'B19013_001',
"r_tot" = "B02001_001",
"r_wh" = "B02001_002",
"r_bl" = "B02001_003",
"tot_hh" = "B25044_001",
"own_novhc" = "B25044_003",
"rent_novhc" = "B25044_010"
),
year = 2020,
survey = "acs5", # American Community Survey 5-year estimate
geometry = TRUE, # returns sf objects
output = "wide") # wide vs. long
)
##
|
| | 0%
|
| | 1%
|
|= | 1%
|
|== | 3%
|
|=== | 4%
|
|==== | 6%
|
|===== | 7%
|
|====== | 8%
|
|======= | 10%
|
|======== | 11%
|
|========= | 13%
|
|========== | 14%
|
|=========== | 16%
|
|============ | 17%
|
|============= | 19%
|
|============== | 20%
|
|=============== | 22%
|
|================ | 23%
|
|================= | 24%
|
|================== | 25%
|
|=================== | 27%
|
|==================== | 28%
|
|===================== | 30%
|
|====================== | 31%
|
|======================= | 33%
|
|======================== | 34%
|
|========================= | 36%
|
|========================== | 37%
|
|=========================== | 39%
|
|============================ | 40%
|
|============================= | 41%
|
|============================== | 42%
|
|=============================== | 44%
|
|================================ | 45%
|
|================================= | 47%
|
|================================== | 48%
|
|=================================== | 50%
|
|==================================== | 51%
|
|===================================== | 53%
|
|====================================== | 54%
|
|======================================= | 56%
|
|======================================== | 57%
|
|========================================= | 58%
|
|========================================== | 59%
|
|=========================================== | 61%
|
|============================================ | 62%
|
|============================================= | 64%
|
|============================================== | 65%
|
|=============================================== | 67%
|
|================================================ | 68%
|
|================================================= | 70%
|
|================================================== | 71%
|
|=================================================== | 73%
|
|==================================================== | 74%
|
|===================================================== | 75%
|
|====================================================== | 76%
|
|======================================================= | 78%
|
|======================================================= | 79%
|
|========================================================= | 81%
|
|========================================================= | 82%
|
|=========================================================== | 84%
|
|=========================================================== | 85%
|
|============================================================= | 87%
|
|============================================================= | 88%
|
|=============================================================== | 90%
|
|=============================================================== | 91%
|
|================================================================= | 92%
|
|================================================================= | 93%
|
|=================================================================== | 95%
|
|=================================================================== | 96%
|
|===================================================================== | 98%
|
|===================================================================== | 99%
|
|======================================================================| 100%
message(sprintf("nrow: %s, ncol: %s", nrow(census), ncol(census)))
## nrow: 600, ncol: 17
# **YOUR CODE HERE..**
# //TASK //////////////////////////////////////////////////////////////////////
# =========== NO MODIFICATION ZONE STARTS HERE ===============================
census <- census %>%
st_transform(crs = 4326) %>%
separate(col = NAME, into = c("tract", "county", "state"), sep = ", ")
# Convert it to POINT at polygon centroids and extract those that fall into bbox
# and assign it into `home` object
home <- census %>% st_centroid() %>% .[bbox %>% st_as_sfc(crs = 4326),,op=st_intersects]
## Warning in st_centroid.sf(.): st_centroid assumes attributes are constant over
## geometries of x
# =========== NO MODIFY ZONE ENDS HERE ========================================
# TASK ////////////////////////////////////////////////////////////////////////
# 1. Get OSM data using opq() function and bbox object defined in the previous code chunk.
# 2. Specify arguments for add_osm_feature() function using
# key = 'highway' and
# value = c("motorway", "trunk", "primary", "secondary", "tertiary", "unclassified", "residential")
# 3. Convert the OSM data into a sf object using osmdata_sf() function
# 4. Convert osmdata polygons into lines using osm_poly2line() function
osm_road <- opq(bbox = bbox) %>%
add_osm_feature(
key = 'highway',
value = c(
"motorway",
"trunk",
"primary",
"secondary",
"tertiary",
"unclassified",
"residential"
)
) %>%
osmdata_sf() %>%
osm_poly2line()
names(osm_road)
## [1] "bbox" "overpass_call" "meta"
## [4] "osm_points" "osm_lines" "osm_polygons"
## [7] "osm_multilines" "osm_multipolygons"
tmap_mode('plot')
## tmap mode set to plotting
tm_shape(osm_road$osm_lines) + tm_lines(col = "highway")
# //TASK //////////////////////////////////////////////////////////////////////
# TASK ////////////////////////////////////////////////////////////////////////
# 1. Convert osm_road$osm_lines to sfnetworks using as_sfnetwork() function
# 2. Activate edges
# 3. Clean the network using edge_is_multiple(), edge_is_loop(), to_spatial_subdivision(), to_spatial_smooth()
# 4. Assign the cleaned network to an object named 'osm'
#osm <- osm_road$osm_line %>%
osm <- sfnetworks::as_sfnetwork(osm_road$osm_line, directed = FALSE)
message(
str_c(
"Before simplification, there were ",
osm %>% st_as_sf("edges") %>% nrow(),
" edges. \n",
"After simplification, there are ",
osm %>% st_as_sf("edges") %>% nrow(),
" edges."
)
)
## Before simplification, there were 59786 edges.
## After simplification, there are 59786 edges.
#Simplify Network
osm <- osm %>%
activate("edges") %>%
filter(!edge_is_multiple()) %>%
filter(!edge_is_loop())
osm <- convert(osm, sfnetworks::to_spatial_subdivision)
## Warning: to_spatial_subdivision assumes attributes are constant over geometries
osm <- convert(osm, sfnetworks::to_spatial_smooth)
# Because the difference is not really discernible, we just print out the differences in the edge count.
message(
str_c(
"Before simplification, there were ",
osm %>% st_as_sf("edges") %>% nrow(),
" edges. \n",
"After simplification, there are ",
osm %>% st_as_sf("edges") %>% nrow(),
" edges."
)
)
## Before simplification, there were 89592 edges.
## After simplification, there are 89592 edges.
# **YOUR CODE HERE..**
# ...
# //TASK //////////////////////////////////////////////////////////////////////
# TASK ////////////////////////////////////////////////////////////////////////
# Add a new column named 'length' to the edges part of the object `osm`.
osm <- osm %>%
activate("edges") %>%
mutate(length = edge_length())
# **YOUR CODE HERE..**
# ...
# //TASK //////////////////////////////////////////////////////////////////////
# =========== NO MODIFICATION ZONE STARTS HERE ===============================
# Extract the first row from `home` object and store it `home_1`
origin <- home[1,]
# =========== NO MODIFY ZONE ENDS HERE ========================================
# TASK ////////////////////////////////////////////////////////////////////////
# Find the shortest path from home_1 to station
# using st_network_paths() function.
print(origin)
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.19362 ymin: 33.80222 xmax: -84.19362 ymax: 33.80222
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 1 13089021908 Census Tract 219.08 DeKalb County Georgia 43191 10870 4829
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 1 885 323 169 3368 812 1994 297 0 14
## rent_novhcE rent_novhcM geometry
## 1 348 127 POINT (-84.19362 33.80222)
#paths = "YOUR CODE HERE"
paths = st_network_paths(osm, from = origin, to = station, type = "shortest")
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
# //TASK //////////////////////////////////////////////////////////////////////
# =========== NO MODIFICATION ZONE STARTS HERE ===============================
# Calculate the total length of edges in the shortest routes to each MARTA stations
dist_all <- map_dbl(1:nrow(paths), function(x){
# Activate 'nodes' part of sfnetworks object
osm %>% activate("nodes") %>%
# Slice the part that corresponds with the shortest route
slice(paths$node_paths[[x]]) %>%
# Extract "edges" from the sfnetworks object as a separate sf object
st_as_sf("edges") %>%
# Extract 'length' column and calculate sum
pull(length) %>%
sum()
}) %>% unlist()
# Replace zeros with a large values to avoid selecting 0 instead of actual minimum
dist_all[dist_all == 0] <- max(dist_all)
# =========== NO MODIFY ZONE ENDS HERE ========================================
# TASK ////////////////////////////////////////////////////////////////////////
# 1. Find out where in `dist_all` the minimum value is located (e.g., first element? second element?)
# and assign it in `closest_index`.
# 2. Extract the actual value of minimum distance and assign it in `closest_dist
###Start Test
#print(head(dist_all))
#typeof(dist_all)
#print(max(dist_all))
#print(min(dist_all))
#which.max(dist_all)
#which.min(dist_all)
#print(dist_all[75])
#print(dist_all[57])
####End Test
closest_index <- which.min(dist_all)# **YOUR CODE HERE..**
closest_dist <- min(dist_all) # **YOUR CODE HERE..**
# //TASK //////////////////////////////////////////////////////////////////////
# =========== NO MODIFICATION ZONE STARTS HERE ===============================
# Calculate how to long it takes to traverse `closest_dist`
# assuming we drive at 30 miles/hour speed.
# Store the output in trvt_osm_m.
car_speed <- set_units(30, mile/h)
trvt_osm_m <- closest_dist/set_units(car_speed, m/min) %>% # Distance divided by 30 mile/h
as.vector()
# =========== NO MODIFY ZONE ENDS HERE ========================================
# TASK ////////////////////////////////////////////////////////////////////////
# 1. From `osm` object, activate nodes part and
# 2. use `closest_index` to extract the selected path
# **YOUR CODE HERE..**
paths_closest <- osm %>%
activate("nodes") %>%
slice(paths$node_paths[[closest_index]])
# //TASK //////////////////////////////////////////////////////////////////////
# =========== NO MODIFICATION ZONE STARTS HERE ===============================
# Use `closest_index` object to extract the closest station information from `gtfs` object's 'stops' table.
closest_station <- gtfs$stops %>%
filter(stop_id %in% rail_stops) %>%
slice(closest_index)
# =========== NO MODIFY ZONE ENDS HERE ========================================
head(closest_station)
## Simple feature collection with 1 feature and 5 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.22891 ymin: 33.76986 xmax: -84.22891 ymax: 33.76986
## Geodetic CRS: WGS 84
## # A tibble: 1 × 6
## stop_id stop_code stop_name geometry stop_lat stop_lon
## <chr> <chr> <chr> <POINT [°]> <dbl> <dbl>
## 1 801 908515 INDIAN CREEK STAT… (-84.22891 33.76986) 33.8 -84.2
# TASK ////////////////////////////////////////////////////////////////////////
# Use filter_stop_times() function to create a subset of stop_times data table
# for date = 2021-08-14, minimum departure time of 7AM, maximum departure time of 10AM.
# Assign the output to `am_stop_time` object
#am_stop_time <- # **YOUR CODE HERE..**
am_stop_time <-
filter_stop_times(gtfs, "2021-08-14", "07:00:00", "10:00:00")
colnames(am_stop_time)
## [1] "trip_id" "arrival_time" "departure_time"
## [4] "stop_id" "stop_sequence" "arrival_time_num"
## [7] "departure_time_num"
head(am_stop_time)
## trip_id arrival_time departure_time stop_id stop_sequence arrival_time_num
## 1: 8056099 07:33:00 07:33:00 900349 1 27180
## 2: 8056099 07:34:15 07:34:15 900378 2 27255
## 3: 8056099 07:34:40 07:34:40 900379 3 27280
## 4: 8056099 07:35:18 07:35:18 213759 4 27318
## 5: 8056099 07:35:45 07:35:45 900394 5 27345
## 6: 8056099 07:36:27 07:36:27 213592 6 27387
## departure_time_num
## 1: 27180
## 2: 27255
## 3: 27280
## 4: 27318
## 5: 27345
## 6: 27387
# //TASK //////////////////////////////////////////////////////////////////////
# TASK ////////////////////////////////////////////////////////////////////////
# 1. Use travel_times() function to calculate travel times from the `closest_station`
# to all other stations during time specified in am_stop_time.
# 2. Filter the row for which the value of 'to_stop_name' column
# equals midtown$stop_name. Assign it into `trvt` object.
trvt <-
travel_times(
filtered_stop_times = am_stop_time,
stop_name = closest_station$stop_name,
return_coords = TRUE
) %>%
filter(to_stop_name ==
midtown$stop_name)# **YOUR CODE HERE..**
# //TASK //////////////////////////////////////////////////////////////////////
# =========== NO MODIFICATION ZONE STARTS HERE ===============================
# Divide the calculated travel time by 60 to convert the unit from seconds to minutes.
trvt_gtfs_m <- trvt$travel_time/60
# Add the travel time from home to the nearest station and
# the travel time from the nearest station to Midtown station
total_trvt <- trvt_osm_m + trvt_gtfs_m
# =========== NO MODIFY ZONE ENDS HERE ========================================
# Function definition (do not modify other parts of the code in this code chunk except for those inside the TASK section)
# NOTE: If you have trouble converting the code for Step 4 to a function and
# your code runs fine up to Step 4, you can seek help from Bonwoo on Step 5.
get_trvt <- function(home, osm, station, midtown){
# TASK ////////////////////////////////////////
# If the code in Step 4 runs fine,
# Replace where it says **YOUR CODE HERE..** below with
# the entirety of the code in the previous code chunk (i.e., Step 4)
# =========== NO MODIFICATION ZONE STARTS HERE ===============================
# Extract the first row from `home` object and store it `home_1`
origin <- home[1,]
# =========== NO MODIFY ZONE ENDS HERE ========================================
# TASK ////////////////////////////////////////////////////////////////////////
# Find the shortest path from home_1 to station
# using st_network_paths() function.
print(origin)
#paths = "YOUR CODE HERE"
paths = st_network_paths(osm, from = origin, to = station, type = "shortest")
# //TASK //////////////////////////////////////////////////////////////////////
# =========== NO MODIFICATION ZONE STARTS HERE ===============================
# Calculate the total length of edges in the shortest routes to each MARTA stations
dist_all <- map_dbl(1:nrow(paths), function(x){
# Activate 'nodes' part of sfnetworks object
osm %>% activate("nodes") %>%
# Slice the part that corresponds with the shortest route
slice(paths$node_paths[[x]]) %>%
# Extract "edges" from the sfnetworks object as a separate sf object
st_as_sf("edges") %>%
# Extract 'length' column and calculate sum
pull(length) %>%
sum()
}) %>% unlist()
# Replace zeros with a large values to avoid selecting 0 instead of actual minimum
dist_all[dist_all == 0] <- max(dist_all)
# =========== NO MODIFY ZONE ENDS HERE ========================================
# TASK ////////////////////////////////////////////////////////////////////////
# 1. Find out where in `dist_all` the minimum value is located (e.g., first element? second element?)
# and assign it in `closest_index`.
# 2. Extract the actual value of minimum distance and assign it in `closest_dist
###Start Test
#print(head(dist_all))
#typeof(dist_all)
#print(max(dist_all))
#print(min(dist_all))
#which.max(dist_all)
#which.min(dist_all)
#print(dist_all[75])
#print(dist_all[57])
####End Test
closest_index <- which.min(dist_all)# **YOUR CODE HERE..**
closest_dist <- min(dist_all) # **YOUR CODE HERE..**
# //TASK //////////////////////////////////////////////////////////////////////
# =========== NO MODIFICATION ZONE STARTS HERE ===============================
# Calculate how to long it takes to traverse `closest_dist`
# assuming we drive at 30 miles/hour speed.
# Store the output in trvt_osm_m.
car_speed <- set_units(30, mile/h)
trvt_osm_m <- closest_dist/set_units(car_speed, m/min) %>% # Distance divided by 30 mile/h
as.vector()
# =========== NO MODIFY ZONE ENDS HERE ========================================
# TASK ////////////////////////////////////////////////////////////////////////
# 1. From `osm` object, activate nodes part and
# 2. use `closest_index` to extract the selected path
# **YOUR CODE HERE..**
paths_closest <- osm %>%
activate("nodes") %>%
slice(paths$node_paths[[closest_index]])
# //TASK //////////////////////////////////////////////////////////////////////
# =========== NO MODIFICATION ZONE STARTS HERE ===============================
# Use `closest_index` object to extract the closest station information from `gtfs` object's 'stops' table.
closest_station <- gtfs$stops %>%
filter(stop_id %in% rail_stops) %>%
slice(closest_index)
# =========== NO MODIFY ZONE ENDS HERE ========================================
head(closest_station)
# TASK ////////////////////////////////////////////////////////////////////////
# Use filter_stop_times() function to create a subset of stop_times data table
# for date = 2021-08-14, minimum departure time of 7AM, maximum departure time of 10AM.
# Assign the output to `am_stop_time` object
#am_stop_time <- # **YOUR CODE HERE..**
am_stop_time <-
filter_stop_times(gtfs, "2021-08-14", "07:00:00", "10:00:00")
colnames(am_stop_time)
head(am_stop_time)
# //TASK //////////////////////////////////////////////////////////////////////
# TASK ////////////////////////////////////////////////////////////////////////
# 1. Use travel_times() function to calculate travel times from the `closest_station`
# to all other stations during time specified in am_stop_time.
# 2. Filter the row for which the value of 'to_stop_name' column
# equals midtown$stop_name. Assign it into `trvt` object.
trvt <-
travel_times(
filtered_stop_times = am_stop_time,
stop_name = closest_station$stop_name,
return_coords = TRUE
) %>%
filter(to_stop_name ==
midtown$stop_name)# **YOUR CODE HERE..**
# //TASK //////////////////////////////////////////////////////////////////////
# =========== NO MODIFICATION ZONE STARTS HERE ===============================
# Divide the calculated travel time by 60 to convert the unit from seconds to minutes.
trvt_gtfs_m <- trvt$travel_time/60
# Add the travel time from home to the nearest station and
# the travel time from the nearest station to Midtown station
total_trvt <- trvt_osm_m + trvt_gtfs_m
# =========== NO MODIFY ZONE ENDS HERE ========================================
# //TASK //////////////////////////////////////
# =========== NO MODIFICATION ZONE STARTS HERE ===============================
if (length(total_trvt) == 0) {total_trvt = 0}
return(total_trvt)
# =========== NO MODIFY ZONE ENDS HERE ========================================
}
This is the end of the section where you need to code
Run the code below to generate a thematic map and a plot
Write a short description of the pattern you see in the map and the plot
# Prepare an empty vector
total_trvt <- vector("numeric", nrow(station))
# Apply the function for all Census Tracts
# Fill `total_trvt` object with the calculated time
for (i in 1:nrow(home)){
total_trvt[i] <- get_trvt(home[i,], osm, station, midtown)
}
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.19362 ymin: 33.80222 xmax: -84.19362 ymax: 33.80222
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 1 13089021908 Census Tract 219.08 DeKalb County Georgia 43191 10870 4829
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 1 885 323 169 3368 812 1994 297 0 14
## rent_novhcE rent_novhcM geometry
## 1 348 127 POINT (-84.19362 33.80222)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.34437 ymin: 33.7661 xmax: -84.34437 ymax: 33.7661
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 2 13089020400 Census Tract 204 DeKalb County Georgia 123711 29481 2743
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 2 408 2435 380 48 54 1219 151 19 23
## rent_novhcE rent_novhcM geometry
## 2 8 14 POINT (-84.34437 33.7661)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.27624 ymin: 33.70664 xmax: -84.27624 ymax: 33.70664
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 3 13089023410 Census Tract 234.10 DeKalb County Georgia 41065 10579 3903
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 3 508 131 144 3562 541 1564 169 22 27
## rent_novhcE rent_novhcM geometry
## 3 295 112 POINT (-84.27624 33.70664)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.37171 ymin: 33.63354 xmax: -84.37171 ymax: 33.63354
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 4 13063040302 Census Tract 403.02 Clayton County Georgia 38227 6812 5896
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 4 960 1280 483 3464 905 1990 283 11 17
## rent_novhcE rent_novhcM geometry
## 4 222 95 POINT (-84.37171 33.63354)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.42748 ymin: 33.57109 xmax: -84.42748 ymax: 33.57109
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 5 13063040512 Census Tract 405.12 Clayton County Georgia 39521 11026 5229
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 5 777 292 177 4557 750 1860 282 0 20
## rent_novhcE rent_novhcM geometry
## 5 216 108 POINT (-84.42748 33.57109)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.45724 ymin: 33.66104 xmax: -84.45724 ymax: 33.66104
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 6 13121010601 Census Tract 106.01 Fulton County Georgia 55479 11675 3673
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 6 960 1057 545 2514 788 1712 457 19 20
## rent_novhcE rent_novhcM geometry
## 6 283 116 POINT (-84.45724 33.66104)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.45228 ymin: 33.75739 xmax: -84.45228 ymax: 33.75739
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 7 13121008302 Census Tract 83.02 Fulton County Georgia 28214 6536 1891
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 7 444 33 21 1836 441 638 106 85 60
## rent_novhcE rent_novhcM geometry
## 7 105 62 POINT (-84.45228 33.75739)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.41824 ymin: 33.73906 xmax: -84.41824 ymax: 33.73906
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE r_totM
## 8 13121004200 Census Tract 42 Fulton County Georgia 23906 4494 2675 577
## r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM rent_novhcE
## 8 252 146 2423 606 1470 235 39 54 647
## rent_novhcM geometry
## 8 99 POINT (-84.41824 33.73906)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.3706 ymin: 33.93123 xmax: -84.3706 ymax: 33.93123
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 9 13121010121 Census Tract 101.21 Fulton County Georgia 95083 26556 2138
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 9 347 1689 256 306 239 1251 203 68 37
## rent_novhcE rent_novhcM geometry
## 9 36 19 POINT (-84.3706 33.93123)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.46542 ymin: 33.70109 xmax: -84.46542 ymax: 33.70109
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 10 13121007604 Census Tract 76.04 Fulton County Georgia 25673 2262 3265
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 10 1410 322 153 2793 1371 1186 327 39 37
## rent_novhcE rent_novhcM geometry
## 10 321 120 POINT (-84.46542 33.70109)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.40174 ymin: 33.74077 xmax: -84.40174 ymax: 33.74077
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 11 13121004400 Census Tract 44 Fulton County Georgia 24297 3842 3105
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 11 917 131 111 2767 947 1397 310 0 14
## rent_novhcE rent_novhcM geometry
## 11 659 244 POINT (-84.40174 33.74077)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.40262 ymin: 33.75879 xmax: -84.40262 ymax: 33.75879
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 12 13121002600 Census Tract 26 Fulton County Georgia 24623 17280 1498
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 12 211 50 50 1378 201 554 69 9 12
## rent_novhcE rent_novhcM geometry
## 12 184 57 POINT (-84.40262 33.75879)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.41867 ymin: 33.59187 xmax: -84.41867 ymax: 33.59187
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 13 13063040519 Census Tract 405.19 Clayton County Georgia 29343 6286 4498
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 13 486 70 74 4237 506 2284 264 0 14
## rent_novhcE rent_novhcM geometry
## 13 564 235 POINT (-84.41867 33.59187)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.22819 ymin: 33.67317 xmax: -84.22819 ymax: 33.67317
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 14 13089023425 Census Tract 234.25 DeKalb County Georgia 63103 9352 6293
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 14 1373 409 436 5605 1176 2149 363 33 48
## rent_novhcE rent_novhcM geometry
## 14 10 16 POINT (-84.22819 33.67317)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.33568 ymin: 33.75758 xmax: -84.33568 ymax: 33.75758
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 15 13089020600 Census Tract 206 DeKalb County Georgia 78564 19996 2084
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 15 440 1051 282 756 307 912 158 3 9
## rent_novhcE rent_novhcM geometry
## 15 95 75 POINT (-84.33568 33.75758)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.23065 ymin: 33.81299 xmax: -84.23065 ymax: 33.81299
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 16 13089022010 Census Tract 220.10 DeKalb County Georgia 62167 7970 2247
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 16 306 417 90 831 204 628 71 16 15
## rent_novhcE rent_novhcM geometry
## 16 33 25 POINT (-84.23065 33.81299)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.39953 ymin: 33.77634 xmax: -84.39953 ymax: 33.77634
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 17 13121001002 Census Tract 10.02 Fulton County Georgia 46346 9715 7401
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 17 574 3388 401 1993 248 492 95 0 20
## rent_novhcE rent_novhcM geometry
## 17 87 33 POINT (-84.39953 33.77634)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.15244 ymin: 33.73761 xmax: -84.15244 ymax: 33.73761
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 20 13089023331 Census Tract 233.31 DeKalb County Georgia 53022 13405 3269
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 20 315 75 69 3187 322 1119 103 16 25
## rent_novhcE rent_novhcM geometry
## 20 75 75 POINT (-84.15244 33.73761)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.20549 ymin: 33.74152 xmax: -84.20549 ymax: 33.74152
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 21 13089023216 Census Tract 232.16 DeKalb County Georgia 56086 14561 4240
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 21 1453 138 99 4102 1440 1679 370 13 20
## rent_novhcE rent_novhcM geometry
## 21 138 90 POINT (-84.20549 33.74152)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.23291 ymin: 33.80283 xmax: -84.23291 ymax: 33.80283
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 22 13089022011 Census Tract 220.11 DeKalb County Georgia 36972 21162 6538
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 22 3135 569 309 4009 2966 1489 329 0 20
## rent_novhcE rent_novhcM geometry
## 22 290 167 POINT (-84.23291 33.80283)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.15735 ymin: 33.71159 xmax: -84.15735 ymax: 33.71159
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 23 13089023319 Census Tract 233.19 DeKalb County Georgia 48520 25869 2719
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 23 338 49 91 2610 345 1151 89 34 43
## rent_novhcE rent_novhcM geometry
## 23 282 127 POINT (-84.15735 33.71159)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.30678 ymin: 33.78002 xmax: -84.30678 ymax: 33.78002
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 24 13089022502 Census Tract 225.02 DeKalb County Georgia 181144 27672 2974
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 24 402 2778 420 20 18 1071 152 10 16
## rent_novhcE rent_novhcM geometry
## 24 60 68 POINT (-84.30678 33.78002)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.48756 ymin: 33.66701 xmax: -84.48756 ymax: 33.66701
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 25 13121011309 Census Tract 113.09 Fulton County Georgia 54903 8810 3425
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 25 396 513 259 2834 498 1860 147 31 36
## rent_novhcE rent_novhcM geometry
## 25 19 35 POINT (-84.48756 33.66701)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.37647 ymin: 33.83261 xmax: -84.37647 ymax: 33.83261
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 26 13121009604 Census Tract 96.04 Fulton County Georgia 82917 50956 2642
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 26 389 2208 307 263 255 1472 199 8 14
## rent_novhcE rent_novhcM geometry
## 26 0 14 POINT (-84.37647 33.83261)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.38305 ymin: 33.7855 xmax: -84.38305 ymax: 33.7855
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 27 13121001101 Census Tract 11.01 Fulton County Georgia 107129 6896 2699
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 27 440 2037 392 226 137 1853 279 39 45
## rent_novhcE rent_novhcM geometry
## 27 34 36 POINT (-84.38305 33.7855)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.42505 ymin: 33.81719 xmax: -84.42505 ymax: 33.81719
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 28 13121008907 Census Tract 89.07 Fulton County Georgia 69722 7231 3122
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 28 562 2411 514 580 161 1740 333 0 14
## rent_novhcE rent_novhcM geometry
## 28 0 14 POINT (-84.42505 33.81719)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.36558 ymin: 33.85267 xmax: -84.36558 ymax: 33.85267
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 29 13121010006 Census Tract 100.06 Fulton County Georgia 82818 13368 3547
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 29 483 2590 452 549 436 2374 292 129 154
## rent_novhcE rent_novhcM geometry
## 29 200 135 POINT (-84.36558 33.85267)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.38496 ymin: 33.77954 xmax: -84.38496 ymax: 33.77954
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 31 13121001206 Census Tract 12.06 Fulton County Georgia 91997 20787 3160
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 31 594 2222 402 202 153 2249 469 27 43
## rent_novhcE rent_novhcM geometry
## 31 328 259 POINT (-84.38496 33.77954)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.37491 ymin: 33.91045 xmax: -84.37491 ymax: 33.91045
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 33 13121010128 Census Tract 101.28 Fulton County Georgia 32838 22406 1849
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 33 471 615 410 659 318 826 216 0 14
## rent_novhcE rent_novhcM geometry
## 33 0 14 POINT (-84.37491 33.91045)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.37063 ymin: 33.76605 xmax: -84.37063 ymax: 33.76605
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 34 13121001701 Census Tract 17.01 Fulton County Georgia 72936 40776 1908
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 34 312 937 345 895 439 901 162 0 14
## rent_novhcE rent_novhcM geometry
## 34 163 145 POINT (-84.37063 33.76605)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.37238 ymin: 33.75251 xmax: -84.37238 ymax: 33.75251
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 35 13121011902 Census Tract 119.02 Fulton County Georgia 31389 24271 1208
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 35 352 468 180 611 313 780 228 10 16
## rent_novhcE rent_novhcM geometry
## 35 282 202 POINT (-84.37238 33.75251)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.44299 ymin: 33.70117 xmax: -84.44299 ymax: 33.70117
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 36 13121011204 Census Tract 112.04 Fulton County Georgia 48107 20553 1293
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 36 313 29 35 1243 319 603 137 0 14
## rent_novhcE rent_novhcM geometry
## 36 93 56 POINT (-84.44299 33.70117)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.36585 ymin: 33.79733 xmax: -84.36585 ymax: 33.79733
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 37 13121000201 Census Tract 2.01 Fulton County Georgia 112849 21258 2097
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 37 181 1971 168 67 82 1088 122 0 14
## rent_novhcE rent_novhcM geometry
## 37 0 14 POINT (-84.36585 33.79733)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.4138 ymin: 33.77644 xmax: -84.4138 ymax: 33.77644
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 39 13121011801 Census Tract 118.01 Fulton County Georgia 55000 13033 465
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 39 133 175 73 222 107 288 83 0 14
## rent_novhcE rent_novhcM geometry
## 39 44 43 POINT (-84.4138 33.77644)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.34233 ymin: 33.95406 xmax: -84.34233 ymax: 33.95406
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 40 13089021213 Census Tract 212.13 DeKalb County Georgia 174531 24200 3509
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 40 360 3178 369 90 94 1195 107 0 14
## rent_novhcE rent_novhcM geometry
## 40 0 14 POINT (-84.34233 33.95406)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.24669 ymin: 33.81034 xmax: -84.24669 ymax: 33.81034
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 41 13089022007 Census Tract 220.07 DeKalb County Georgia 40656 5871 3920
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 41 619 294 147 2048 685 983 121 7 11
## rent_novhcE rent_novhcM geometry
## 41 96 58 POINT (-84.24669 33.81034)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.32968 ymin: 33.76596 xmax: -84.32968 ymax: 33.76596
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 42 13089020300 Census Tract 203 DeKalb County Georgia 153438 10457 4468
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 42 549 3774 467 367 268 1601 148 0 14
## rent_novhcE rent_novhcM geometry
## 42 50 59 POINT (-84.32968 33.76596)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.32498 ymin: 33.7539 xmax: -84.32498 ymax: 33.7539
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 43 13089020700 Census Tract 207 DeKalb County Georgia 63356 11482 2528
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 43 397 1485 179 721 276 1263 231 10 17
## rent_novhcE rent_novhcM geometry
## 43 360 229 POINT (-84.32498 33.7539)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.17095 ymin: 33.7744 xmax: -84.17095 ymax: 33.7744
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 44 13089023209 Census Tract 232.09 DeKalb County Georgia 67857 8049 5748
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 44 916 301 105 5262 872 1792 176 14 15
## rent_novhcE rent_novhcM geometry
## 44 0 20 POINT (-84.17095 33.7744)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.33031 ymin: 33.60748 xmax: -84.33031 ymax: 33.60748
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 45 13063040407 Census Tract 404.07 Clayton County Georgia 48866 7002 3927
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 45 555 863 290 1669 366 1303 188 19 33
## rent_novhcE rent_novhcM geometry
## 45 25 25 POINT (-84.33031 33.60748)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.42809 ymin: 33.74088 xmax: -84.42809 ymax: 33.74088
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 46 13121004100 Census Tract 41 Fulton County Georgia 62545 13081 2318
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 46 522 390 223 1732 487 791 166 22 22
## rent_novhcE rent_novhcM geometry
## 46 55 41 POINT (-84.42809 33.74088)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.36092 ymin: 33.70422 xmax: -84.36092 ymax: 33.70422
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 47 13121006802 Census Tract 68.02 Fulton County Georgia 13750 6728 2040
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 47 396 48 75 1937 411 517 168 15 14
## rent_novhcE rent_novhcM geometry
## 47 296 186 POINT (-84.36092 33.70422)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.42862 ymin: 33.71866 xmax: -84.42862 ymax: 33.71866
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 48 13121006602 Census Tract 66.02 Fulton County Georgia 25568 8807 875
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 48 178 4 3 858 178 373 61 29 18
## rent_novhcE rent_novhcM geometry
## 48 130 58 POINT (-84.42862 33.71866)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.40713 ymin: 33.67893 xmax: -84.40713 ymax: 33.67893
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 49 13121007400 Census Tract 74 Fulton County Georgia 22287 7806 3438
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 49 914 243 176 2673 721 1238 293 6 10
## rent_novhcE rent_novhcM geometry
## 49 463 136 POINT (-84.40713 33.67893)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.28532 ymin: 33.71975 xmax: -84.28532 ymax: 33.71975
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 53 13089023603 Census Tract 236.03 DeKalb County Georgia 39743 5190 4259
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 53 975 375 168 3712 957 1482 245 8 14
## rent_novhcE rent_novhcM geometry
## 53 128 73 POINT (-84.28532 33.71975)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.32542 ymin: 33.82082 xmax: -84.32542 ymax: 33.82082
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 54 13089021503 Census Tract 215.03 DeKalb County Georgia 58103 15536 3618
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 54 477 2508 390 616 272 1464 165 0 14
## rent_novhcE rent_novhcM geometry
## 54 111 65 POINT (-84.32542 33.82082)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.22963 ymin: 33.77879 xmax: -84.22963 ymax: 33.77879
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 55 13089023114 Census Tract 231.14 DeKalb County Georgia 43333 16716 3705
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 55 909 468 168 2836 936 1288 339 16 16
## rent_novhcE rent_novhcM geometry
## 55 159 206 POINT (-84.22963 33.77879)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.27443 ymin: 33.91734 xmax: -84.27443 ymax: 33.91734
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 56 13089021306 Census Tract 213.06 DeKalb County Georgia 60549 13505 5348
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 56 581 3389 640 470 201 2014 319 15 18
## rent_novhcE rent_novhcM geometry
## 56 91 55 POINT (-84.27443 33.91734)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.359 ymin: 33.96211 xmax: -84.359 ymax: 33.96211
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 57 13121010117 Census Tract 101.17 Fulton County Georgia 60920 8069 4767
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 57 726 1328 346 2722 689 2303 405 0 14
## rent_novhcE rent_novhcM geometry
## 57 141 93 POINT (-84.359 33.96211)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.37766 ymin: 33.84633 xmax: -84.37766 ymax: 33.84633
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 58 13121009601 Census Tract 96.01 Fulton County Georgia 118045 19862 3209
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 58 606 2251 307 275 132 1685 279 0 14
## rent_novhcE rent_novhcM geometry
## 58 32 36 POINT (-84.37766 33.84633)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.34447 ymin: 33.59329 xmax: -84.34447 ymax: 33.59329
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 59 13063040418 Census Tract 404.18 Clayton County Georgia 64036 52562 2841
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 59 650 639 346 1253 380 415 99 14 26
## rent_novhcE rent_novhcM geometry
## 59 62 97 POINT (-84.34447 33.59329)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.41254 ymin: 33.59955 xmax: -84.41254 ymax: 33.59955
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 63 13063040532 Census Tract 405.32 Clayton County Georgia 45743 6065 1517
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 63 384 122 164 1262 420 658 93 0 14
## rent_novhcE rent_novhcM geometry
## 63 56 54 POINT (-84.41254 33.59955)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.32414 ymin: 33.83439 xmax: -84.32414 ymax: 33.83439
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 65 13089021607 Census Tract 216.07 DeKalb County Georgia 76154 30138 1626
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 65 347 1006 203 196 87 866 148 0 14
## rent_novhcE rent_novhcM geometry
## 65 111 88 POINT (-84.32414 33.83439)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.23256 ymin: 33.89595 xmax: -84.23256 ymax: 33.89595
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 67 13089021815 Census Tract 218.15 DeKalb County Georgia 34840 11431 4101
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 67 1240 877 299 2301 1101 1762 402 0 14
## rent_novhcE rent_novhcM geometry
## 67 440 298 POINT (-84.23256 33.89595)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.15979 ymin: 33.74752 xmax: -84.15979 ymax: 33.74752
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 68 13089023332 Census Tract 233.32 DeKalb County Georgia 63484 12311 3166
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 68 744 125 116 2872 768 1034 169 0 14
## rent_novhcE rent_novhcM geometry
## 68 46 77 POINT (-84.15979 33.74752)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.25484 ymin: 33.9058 xmax: -84.25484 ymax: 33.9058
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 69 13089021310 Census Tract 213.10 DeKalb County Georgia 38629 5505 4411
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 69 826 2083 600 141 97 1342 234 16 24
## rent_novhcE rent_novhcM geometry
## 69 107 86 POINT (-84.25484 33.9058)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.31983 ymin: 33.84373 xmax: -84.31983 ymax: 33.84373
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 70 13089021419 Census Tract 214.19 DeKalb County Georgia 63793 18935 2047
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 70 284 547 213 852 272 906 112 0 14
## rent_novhcE rent_novhcM geometry
## 70 111 63 POINT (-84.31983 33.84373)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.24056 ymin: 33.81568 xmax: -84.24056 ymax: 33.81568
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 71 13089022014 Census Tract 220.14 DeKalb County Georgia 36128 7723 2683
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 71 727 31 52 2033 767 671 150 0 14
## rent_novhcE rent_novhcM geometry
## 71 72 80 POINT (-84.24056 33.81568)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.21634 ymin: 33.82876 xmax: -84.21634 ymax: 33.82876
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 73 13089021817 Census Tract 218.17 DeKalb County Georgia 123864 50312 3060
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 73 927 1081 357 821 373 836 197 0 14
## rent_novhcE rent_novhcM geometry
## 73 0 14 POINT (-84.21634 33.82876)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.35206 ymin: 33.84543 xmax: -84.35206 ymax: 33.84543
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 74 13121009410 Census Tract 94.10 Fulton County Georgia 81821 46913 3500
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 74 1979 2825 1948 249 196 1307 421 0 14
## rent_novhcE rent_novhcM geometry
## 74 38 30 POINT (-84.35206 33.84543)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.37413 ymin: 33.77628 xmax: -84.37413 ymax: 33.77628
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 75 13121001301 Census Tract 13.01 Fulton County Georgia 61652 30324 2782
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 75 490 2143 484 491 207 1411 434 0 14
## rent_novhcE rent_novhcM geometry
## 75 316 402 POINT (-84.37413 33.77628)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.40723 ymin: 33.78337 xmax: -84.40723 ymax: 33.78337
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 76 13121000601 Census Tract 6.01 Fulton County Georgia 61830 22223 4564
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 76 645 2478 557 805 237 1434 197 0 14
## rent_novhcE rent_novhcM geometry
## 76 241 139 POINT (-84.40723 33.78337)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.37477 ymin: 33.85634 xmax: -84.37477 ymax: 33.85634
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 77 13121010003 Census Tract 100.03 Fulton County Georgia 122784 48445 3175
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 77 714 2500 594 234 180 1857 371 0 14
## rent_novhcE rent_novhcM geometry
## 77 112 107 POINT (-84.37477 33.85634)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.36805 ymin: 33.91495 xmax: -84.36805 ymax: 33.91495
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 79 13121010132 Census Tract 101.32 Fulton County Georgia 61054 15603 3739
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 79 850 2354 738 749 368 1924 416 0 14
## rent_novhcE rent_novhcM geometry
## 79 399 171 POINT (-84.36805 33.91495)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.38286 ymin: 33.93641 xmax: -84.38286 ymax: 33.93641
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 83 13121010221 Census Tract 102.21 Fulton County Georgia 84262 18704 1935
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 83 517 1794 505 23 37 998 297 0 14
## rent_novhcE rent_novhcM geometry
## 83 0 14 POINT (-84.38286 33.93641)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.35726 ymin: 33.85907 xmax: -84.35726 ymax: 33.85907
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 85 13121010007 Census Tract 100.07 Fulton County Georgia 250001 NA 1831
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 85 321 1664 342 32 41 680 90 0 14
## rent_novhcE rent_novhcM geometry
## 85 16 27 POINT (-84.35726 33.85907)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.38011 ymin: 33.75689 xmax: -84.38011 ymax: 33.75689
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 86 13121002802 Census Tract 28.02 Fulton County Georgia 25054 5296 1487
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 86 350 325 160 1028 346 587 120 0 14
## rent_novhcE rent_novhcM geometry
## 86 229 62 POINT (-84.38011 33.75689)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.3643 ymin: 33.7658 xmax: -84.3643 ymax: 33.7658
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 87 13121001702 Census Tract 17.02 Fulton County Georgia 102754 20559 3507
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 87 547 2769 448 668 408 2098 416 0 14
## rent_novhcE rent_novhcM geometry
## 87 26 30 POINT (-84.3643 33.7658)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.44517 ymin: 33.69296 xmax: -84.44517 ymax: 33.69296
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 88 13121011203 Census Tract 112.03 Fulton County Georgia 43152 7913 1660
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 88 252 922 277 651 231 744 97 20 29
## rent_novhcE rent_novhcM geometry
## 88 27 34 POINT (-84.44517 33.69296)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.40774 ymin: 33.80662 xmax: -84.40774 ymax: 33.80662
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 89 13121009001 Census Tract 90.01 Fulton County Georgia 64000 17904 2307
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 89 324 1454 315 443 222 1360 202 0 14
## rent_novhcE rent_novhcM geometry
## 89 131 150 POINT (-84.40774 33.80662)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.39075 ymin: 33.71162 xmax: -84.39075 ymax: 33.71162
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 90 13121005503 Census Tract 55.03 Fulton County Georgia 19679 5963 1071
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 90 221 0 14 1071 221 630 82 0 14
## rent_novhcE rent_novhcM geometry
## 90 182 102 POINT (-84.39075 33.71162)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.37002 ymin: 33.77613 xmax: -84.37002 ymax: 33.77613
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 91 13121001302 Census Tract 13.02 Fulton County Georgia 103381 35237 1848
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 91 331 1161 218 569 292 991 100 0 14
## rent_novhcE rent_novhcM geometry
## 91 51 62 POINT (-84.37002 33.77613)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.18938 ymin: 33.73994 xmax: -84.18938 ymax: 33.73994
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 92 13089023211 Census Tract 232.11 DeKalb County Georgia 58144 16495 3906
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 92 823 52 56 3614 855 1377 148 3 15
## rent_novhcE rent_novhcM geometry
## 92 134 92 POINT (-84.18938 33.73994)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.50726 ymin: 33.70331 xmax: -84.50726 ymax: 33.70331
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 93 13121007703 Census Tract 77.03 Fulton County Georgia 39944 11612 3906
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 93 684 73 87 3734 683 1508 209 35 35
## rent_novhcE rent_novhcM geometry
## 93 196 98 POINT (-84.50726 33.70331)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.34106 ymin: 34.00351 xmax: -84.34106 ymax: 34.00351
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 94 13121010120 Census Tract 101.20 Fulton County Georgia 80065 18749 2701
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 94 795 1923 765 370 276 1360 363 0 14
## rent_novhcE rent_novhcM geometry
## 94 18 20 POINT (-84.34106 34.00351)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.36227 ymin: 33.77707 xmax: -84.36227 ymax: 33.77707
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 95 13121001400 Census Tract 14 Fulton County Georgia 82086 3608 2291
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 95 284 1885 280 169 121 1420 239 0 14
## rent_novhcE rent_novhcM geometry
## 95 61 48 POINT (-84.36227 33.77707)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.38516 ymin: 33.60488 xmax: -84.38516 ymax: 33.60488
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 96 13063040306 Census Tract 403.06 Clayton County Georgia 34667 2690 4465
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 96 819 565 336 3180 717 1526 290 0 14
## rent_novhcE rent_novhcM geometry
## 96 55 59 POINT (-84.38516 33.60488)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.28577 ymin: 33.87581 xmax: -84.28577 ymax: 33.87581
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 97 13089021308 Census Tract 213.08 DeKalb County Georgia 60521 16283 3863
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 97 471 1586 451 497 240 1391 181 32 50
## rent_novhcE rent_novhcM geometry
## 97 176 106 POINT (-84.28577 33.87581)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.19195 ymin: 33.82055 xmax: -84.19195 ymax: 33.82055
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 98 13089021911 Census Tract 219.11 DeKalb County Georgia 30901 8609 2636
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 98 1050 93 103 2448 1036 1125 353 23 36
## rent_novhcE rent_novhcM geometry
## 98 193 179 POINT (-84.19195 33.82055)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.30227 ymin: 33.74257 xmax: -84.30227 ymax: 33.74257
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 99 13089980000 Census Tract 9800 DeKalb County Georgia NA NA 0
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 99 14 0 14 0 14 0 14 0 14
## rent_novhcE rent_novhcM geometry
## 99 0 14 POINT (-84.30227 33.74257)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.25132 ymin: 33.74965 xmax: -84.25132 ymax: 33.74965
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 101 13089023107 Census Tract 231.07 DeKalb County Georgia 57500 11540 4009
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 101 649 926 263 2852 674 1582 181 52 50
## rent_novhcE rent_novhcM geometry
## 101 164 93 POINT (-84.25132 33.74965)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.30196 ymin: 33.92897 xmax: -84.30196 ymax: 33.92897
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 102 13089021224 Census Tract 212.24 DeKalb County Georgia 50101 15392 4127
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 102 695 1725 412 1616 653 2433 523 0 14
## rent_novhcE rent_novhcM geometry
## 102 0 14 POINT (-84.30196 33.92897)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.20679 ymin: 33.84429 xmax: -84.20679 ymax: 33.84429
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 103 13089021824 Census Tract 218.24 DeKalb County Georgia 35250 19068 2548
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 103 501 1227 493 1128 458 857 136 14 24
## rent_novhcE rent_novhcM geometry
## 103 20 39 POINT (-84.20679 33.84429)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.20109 ymin: 33.79451 xmax: -84.20109 ymax: 33.79451
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 104 13089021917 Census Tract 219.17 DeKalb County Georgia 34936 4348 3567
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 104 755 291 143 3223 780 1289 166 0 14
## rent_novhcE rent_novhcM geometry
## 104 162 89 POINT (-84.20109 33.79451)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.29428 ymin: 33.78127 xmax: -84.29428 ymax: 33.78127
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 105 13089022601 Census Tract 226.01 DeKalb County Georgia 77900 19644 4538
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 105 648 3477 662 579 173 2124 238 12 21
## rent_novhcE rent_novhcM geometry
## 105 402 136 POINT (-84.29428 33.78127)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.38406 ymin: 33.82091 xmax: -84.38406 ymax: 33.82091
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 106 13121009301 Census Tract 93.01 Fulton County Georgia 101641 67730 4136
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 106 928 3357 743 107 78 1865 402 32 38
## rent_novhcE rent_novhcM geometry
## 106 51 59 POINT (-84.38406 33.82091)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.47053 ymin: 33.66825 xmax: -84.47053 ymax: 33.66825
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 107 13121011310 Census Tract 113.10 Fulton County Georgia 38005 9497 5329
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 107 829 798 436 4333 960 2029 360 16 28
## rent_novhcE rent_novhcM geometry
## 107 454 170 POINT (-84.47053 33.66825)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.40674 ymin: 33.76855 xmax: -84.40674 ymax: 33.76855
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 108 13121011802 Census Tract 118.02 Fulton County Georgia 22077 19791 1430
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 108 277 245 101 1065 276 639 115 18 20
## rent_novhcE rent_novhcM geometry
## 108 136 58 POINT (-84.40674 33.76855)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.37104 ymin: 33.80977 xmax: -84.37104 ymax: 33.80977
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 110 13121009202 Census Tract 92.02 Fulton County Georgia 91026 24976 3182
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 110 674 1656 325 1248 634 1636 291 0 14
## rent_novhcE rent_novhcM geometry
## 110 32 46 POINT (-84.37104 33.80977)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.35391 ymin: 33.7736 xmax: -84.35391 ymax: 33.7736
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 111 13121001501 Census Tract 15.01 Fulton County Georgia 57036 20836 2297
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 111 485 1818 463 380 205 1330 277 0 14
## rent_novhcE rent_novhcM geometry
## 111 156 75 POINT (-84.35391 33.7736)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.43628 ymin: 33.74995 xmax: -84.43628 ymax: 33.74995
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 112 13121004000 Census Tract 40 Fulton County Georgia 33177 11853 2677
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 112 613 183 114 2413 572 1097 213 63 37
## rent_novhcE rent_novhcM geometry
## 112 193 71 POINT (-84.43628 33.74995)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.38373 ymin: 33.72984 xmax: -84.38373 ymax: 33.72984
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 113 13121005501 Census Tract 55.01 Fulton County Georgia 36853 6849 3036
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 113 1293 562 151 2307 1288 1025 250 20 17
## rent_novhcE rent_novhcM geometry
## 113 178 81 POINT (-84.38373 33.72984)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.27423 ymin: 33.89097 xmax: -84.27423 ymax: 33.89097
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 114 13089021307 Census Tract 213.07 DeKalb County Georgia 62599 9923 3993
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 114 513 1930 412 311 185 1266 159 73 54
## rent_novhcE rent_novhcM geometry
## 114 48 44 POINT (-84.27423 33.89097)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.31123 ymin: 33.94353 xmax: -84.31123 ymax: 33.94353
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 115 13089021210 Census Tract 212.10 DeKalb County Georgia 180409 11204 5343
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 115 414 4890 416 22 33 1840 181 0 20
## rent_novhcE rent_novhcM geometry
## 115 0 20 POINT (-84.31123 33.94353)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.34154 ymin: 33.99479 xmax: -84.34154 ymax: 33.99479
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 116 13121010124 Census Tract 101.24 Fulton County Georgia 73180 23004 2352
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 116 704 634 437 1681 649 1110 422 0 14
## rent_novhcE rent_novhcM geometry
## 116 36 59 POINT (-84.34154 33.99479)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.18987 ymin: 33.77597 xmax: -84.18987 ymax: 33.77597
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 120 13089023222 Census Tract 232.22 DeKalb County Georgia 38181 3474 4295
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 120 775 127 107 3916 786 1624 339 119 164
## rent_novhcE rent_novhcM geometry
## 120 263 112 POINT (-84.18987 33.77597)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.4503 ymin: 33.67722 xmax: -84.4503 ymax: 33.67722
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 121 13121011202 Census Tract 112.02 Fulton County Georgia 47126 12683 3862
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 121 505 1592 307 2021 496 1857 362 5 9
## rent_novhcE rent_novhcM geometry
## 121 255 117 POINT (-84.4503 33.67722)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.27739 ymin: 33.86236 xmax: -84.27739 ymax: 33.86236
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 122 13089021709 Census Tract 217.09 DeKalb County Georgia 63309 7053 2461
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 122 440 1437 338 679 307 1473 294 15 22
## rent_novhcE rent_novhcM geometry
## 122 51 79 POINT (-84.27739 33.86236)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.40247 ymin: 33.78879 xmax: -84.40247 ymax: 33.78879
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 123 13121000602 Census Tract 6.02 Fulton County Georgia 46917 10735 3637
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 123 664 1233 303 1029 398 1731 206 9 16
## rent_novhcE rent_novhcM geometry
## 123 277 163 POINT (-84.40247 33.78879)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.38451 ymin: 33.71855 xmax: -84.38451 ymax: 33.71855
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 124 13121005504 Census Tract 55.04 Fulton County Georgia 51731 36331 1347
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 124 371 200 104 1147 369 550 103 0 14
## rent_novhcE rent_novhcM geometry
## 124 93 62 POINT (-84.38451 33.71855)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.41977 ymin: 33.80616 xmax: -84.41977 ymax: 33.80616
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 125 13121008909 Census Tract 89.09 Fulton County Georgia 83862 20713 1663
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 125 369 1360 377 303 336 743 116 0 14
## rent_novhcE rent_novhcM geometry
## 125 18 28 POINT (-84.41977 33.80616)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.35486 ymin: 33.98518 xmax: -84.35486 ymax: 33.98518
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 126 13121010214 Census Tract 102.14 Fulton County Georgia 44777 26291 2584
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 126 696 1370 495 651 386 1492 494 318 417
## rent_novhcE rent_novhcM geometry
## 126 305 120 POINT (-84.35486 33.98518)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.4258 ymin: 33.65183 xmax: -84.4258 ymax: 33.65183
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 129 13121980000 Census Tract 9800 Fulton County Georgia NA NA 0
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 129 14 0 14 0 14 0 14 0 14
## rent_novhcE rent_novhcM geometry
## 129 0 14 POINT (-84.4258 33.65183)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.23189 ymin: 33.82114 xmax: -84.23189 ymax: 33.82114
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 130 13089022013 Census Tract 220.13 DeKalb County Georgia 42008 13068 3153
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 130 417 237 150 2797 412 979 135 16 25
## rent_novhcE rent_novhcM geometry
## 130 89 63 POINT (-84.23189 33.82114)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.31709 ymin: 33.85029 xmax: -84.31709 ymax: 33.85029
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 131 13089021418 Census Tract 214.18 DeKalb County Georgia 45366 11691 2324
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 131 473 1037 285 404 125 944 186 0 14
## rent_novhcE rent_novhcM geometry
## 131 141 78 POINT (-84.31709 33.85029)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.25888 ymin: 33.72393 xmax: -84.25888 ymax: 33.72393
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 132 13089023505 Census Tract 235.05 DeKalb County Georgia 38497 5328 3288
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 132 346 166 93 2990 386 1033 127 81 49
## rent_novhcE rent_novhcM geometry
## 132 43 45 POINT (-84.25888 33.72393)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.39282 ymin: 33.92242 xmax: -84.39282 ymax: 33.92242
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 133 13121010220 Census Tract 102.20 Fulton County Georgia 101016 25501 3567
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 133 572 3007 558 246 154 1807 217 0 14
## rent_novhcE rent_novhcM geometry
## 133 204 119 POINT (-84.39282 33.92242)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.35327 ymin: 33.94153 xmax: -84.35327 ymax: 33.94153
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 134 13121010130 Census Tract 101.30 Fulton County Georgia 96136 17595 4041
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 134 554 1587 342 147 137 1902 224 0 14
## rent_novhcE rent_novhcM geometry
## 134 327 205 POINT (-84.35327 33.94153)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.3727 ymin: 33.97141 xmax: -84.3727 ymax: 33.97141
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 135 13121010219 Census Tract 102.19 Fulton County Georgia 80268 24167 2033
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 135 723 870 210 921 463 1126 311 0 14
## rent_novhcE rent_novhcM geometry
## 135 0 14 POINT (-84.3727 33.97141)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.35609 ymin: 33.82618 xmax: -84.35609 ymax: 33.82618
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 136 13121009407 Census Tract 94.07 Fulton County Georgia 72816 8828 1076
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 136 280 372 129 375 157 667 136 0 14
## rent_novhcE rent_novhcM geometry
## 136 0 14 POINT (-84.35609 33.82618)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.4356 ymin: 33.76185 xmax: -84.4356 ymax: 33.76185
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 137 13121008400 Census Tract 84 Fulton County Georgia 21667 17412 3008
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 137 872 371 207 2577 942 1696 740 68 57
## rent_novhcE rent_novhcM geometry
## 137 365 124 POINT (-84.4356 33.76185)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.38399 ymin: 33.74444 xmax: -84.38399 ymax: 33.74444
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 138 13121004800 Census Tract 48 Fulton County Georgia 14654 5498 1088
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 138 360 76 32 886 351 726 233 0 14
## rent_novhcE rent_novhcM geometry
## 138 276 167 POINT (-84.38399 33.74444)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.43233 ymin: 33.635 xmax: -84.43233 ymax: 33.635
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 139 13063980000 Census Tract 9800 Clayton County Georgia NA NA 0
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 139 14 0 14 0 14 0 14 0 14
## rent_novhcE rent_novhcM geometry
## 139 0 14 POINT (-84.43233 33.635)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.36227 ymin: 33.82871 xmax: -84.36227 ymax: 33.82871
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 140 13121009408 Census Tract 94.08 Fulton County Georgia 49861 19656 1718
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 140 238 845 264 553 221 1200 134 20 34
## rent_novhcE rent_novhcM geometry
## 140 257 130 POINT (-84.36227 33.82871)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.48178 ymin: 33.57695 xmax: -84.48178 ymax: 33.57695
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 142 13121010518 Census Tract 105.18 Fulton County Georgia 59441 14557 2905
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 142 801 157 141 2607 771 1067 227 0 14
## rent_novhcE rent_novhcM geometry
## 142 122 92 POINT (-84.48178 33.57695)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.23504 ymin: 33.70521 xmax: -84.23504 ymax: 33.70521
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 143 13089023445 Census Tract 234.45 DeKalb County Georgia 46577 26203 4224
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 143 836 56 55 3509 478 1851 735 66 59
## rent_novhcE rent_novhcM geometry
## 143 29 47 POINT (-84.23504 33.70521)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.42345 ymin: 33.78 xmax: -84.42345 ymax: 33.78
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 144 13121000700 Census Tract 7 Fulton County Georgia 61250 36674 3323
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 144 558 971 228 1949 359 367 70 6 9
## rent_novhcE rent_novhcM geometry
## 144 40 29 POINT (-84.42345 33.78)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.42479 ymin: 33.75866 xmax: -84.42479 ymax: 33.75866
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 145 13121002400 Census Tract 24 Fulton County Georgia 26919 8617 3025
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 145 542 168 108 2771 523 1170 222 19 16
## rent_novhcE rent_novhcM geometry
## 145 315 84 POINT (-84.42479 33.75866)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.20317 ymin: 33.67008 xmax: -84.20317 ymax: 33.67008
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 146 13089023426 Census Tract 234.26 DeKalb County Georgia 60879 14664 4383
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 146 714 91 83 4075 725 1625 307 14 17
## rent_novhcE rent_novhcM geometry
## 146 6 10 POINT (-84.20317 33.67008)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.31117 ymin: 33.92382 xmax: -84.31117 ymax: 33.92382
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 147 13089021225 Census Tract 212.25 DeKalb County Georgia 59923 10589 2648
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 147 628 784 225 1096 436 1507 292 17 27
## rent_novhcE rent_novhcM geometry
## 147 31 34 POINT (-84.31117 33.92382)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.1687 ymin: 33.69546 xmax: -84.1687 ymax: 33.69546
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 148 13089023431 Census Tract 234.31 DeKalb County Georgia 43889 12862 1889
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 148 531 2 3 1750 489 670 120 0 14
## rent_novhcE rent_novhcM geometry
## 148 22 35 POINT (-84.1687 33.69546)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.35743 ymin: 33.7589 xmax: -84.35743 ymax: 33.7589
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 149 13121003000 Census Tract 30 Fulton County Georgia 128024 12288 3679
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 149 481 2885 399 292 160 1862 194 28 32
## rent_novhcE rent_novhcM geometry
## 149 32 23 POINT (-84.35743 33.7589)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.4499 ymin: 33.80739 xmax: -84.4499 ymax: 33.80739
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 150 13121008802 Census Tract 88.02 Fulton County Georgia 139417 53221 3171
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 150 487 1958 446 716 126 1130 203 26 31
## rent_novhcE rent_novhcM geometry
## 150 60 54 POINT (-84.4499 33.80739)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.24128 ymin: 33.77371 xmax: -84.24128 ymax: 33.77371
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 151 13089023115 Census Tract 231.15 DeKalb County Georgia NA NA 2240
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 151 175 262 118 1722 206 0 14 0 14
## rent_novhcE rent_novhcM geometry
## 151 0 14 POINT (-84.24128 33.77371)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.35868 ymin: 33.83586 xmax: -84.35868 ymax: 33.83586
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 152 13121009409 Census Tract 94.09 Fulton County Georgia 68829 9028 2171
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 152 367 1028 365 534 344 933 100 0 14
## rent_novhcE rent_novhcM geometry
## 152 288 139 POINT (-84.35868 33.83586)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.38277 ymin: 33.95563 xmax: -84.38277 ymax: 33.95563
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 153 13121010217 Census Tract 102.17 Fulton County Georgia 74519 20011 2713
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 153 404 1871 277 665 287 1259 162 24 38
## rent_novhcE rent_novhcM geometry
## 153 0 14 POINT (-84.38277 33.95563)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.48873 ymin: 33.63913 xmax: -84.48873 ymax: 33.63913
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 155 13121011308 Census Tract 113.08 Fulton County Georgia 40838 3634 1746
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 155 577 21 30 1713 580 706 233 0 14
## rent_novhcE rent_novhcM geometry
## 155 316 231 POINT (-84.48873 33.63913)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.44424 ymin: 33.77577 xmax: -84.44424 ymax: 33.77577
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 156 13121008500 Census Tract 85 Fulton County Georgia 30151 9813 2040
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 156 499 114 138 1894 512 761 121 90 66
## rent_novhcE rent_novhcM geometry
## 156 81 65 POINT (-84.44424 33.77577)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.32933 ymin: 33.85717 xmax: -84.32933 ymax: 33.85717
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 158 13089021405 Census Tract 214.05 DeKalb County Georgia 126308 18786 4696
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 158 547 3907 539 214 146 2261 218 22 35
## rent_novhcE rent_novhcM geometry
## 158 47 55 POINT (-84.32933 33.85717)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.22208 ymin: 33.7241 xmax: -84.22208 ymax: 33.7241
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 159 13089023507 Census Tract 235.07 DeKalb County Georgia 43782 6644 4252
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 159 755 9 12 3874 785 1337 123 31 33
## rent_novhcE rent_novhcM geometry
## 159 82 68 POINT (-84.22208 33.7241)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.23232 ymin: 33.74513 xmax: -84.23232 ymax: 33.74513
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 160 13089023108 Census Tract 231.08 DeKalb County Georgia 33333 3161 4372
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 160 562 390 136 3750 563 1690 164 9 15
## rent_novhcE rent_novhcM geometry
## 160 284 91 POINT (-84.23232 33.74513)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.25543 ymin: 33.79051 xmax: -84.25543 ymax: 33.79051
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 161 13089022100 Census Tract 221 DeKalb County Georgia 47278 7685 3846
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 161 759 867 269 2136 358 1381 180 10 18
## rent_novhcE rent_novhcM geometry
## 161 142 63 POINT (-84.25543 33.79051)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.33922 ymin: 33.78947 xmax: -84.33922 ymax: 33.78947
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 162 13089022401 Census Tract 224.01 DeKalb County Georgia 118924 19111 4230
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 162 646 3221 403 123 78 1885 223 0 14
## rent_novhcE rent_novhcM geometry
## 162 9 16 POINT (-84.33922 33.78947)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.30397 ymin: 33.76049 xmax: -84.30397 ymax: 33.76049
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 163 13089022700 Census Tract 227 DeKalb County Georgia 144167 21051 5406
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 163 520 3693 358 1021 269 1714 209 0 20
## rent_novhcE rent_novhcM geometry
## 163 81 59 POINT (-84.30397 33.76049)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.31341 ymin: 33.70772 xmax: -84.31341 ymax: 33.70772
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 164 13089023803 Census Tract 238.03 DeKalb County Georgia 65517 17838 6263
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 164 847 1012 236 4682 751 2128 222 12 18
## rent_novhcE rent_novhcM geometry
## 164 106 78 POINT (-84.31341 33.70772)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.49679 ymin: 33.76243 xmax: -84.49679 ymax: 33.76243
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 165 13121007807 Census Tract 78.07 Fulton County Georgia 32543 16061 4637
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 165 2984 60 73 4460 2987 1043 236 43 41
## rent_novhcE rent_novhcM geometry
## 165 328 229 POINT (-84.49679 33.76243)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.49989 ymin: 33.75165 xmax: -84.49989 ymax: 33.75165
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 166 13121007808 Census Tract 78.08 Fulton County Georgia 13577 2102 3728
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 166 567 0 14 3652 569 1225 131 70 52
## rent_novhcE rent_novhcM geometry
## 166 536 178 POINT (-84.49989 33.75165)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.49155 ymin: 33.73225 xmax: -84.49155 ymax: 33.73225
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 167 13121007900 Census Tract 79 Fulton County Georgia 73473 11132 5432
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 167 981 287 256 4963 870 2533 430 156 223
## rent_novhcE rent_novhcM geometry
## 167 53 66 POINT (-84.49155 33.73225)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.41168 ymin: 33.6952 xmax: -84.41168 ymax: 33.6952
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 168 13121007500 Census Tract 75 Fulton County Georgia 24301 10581 2997
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 168 519 323 180 2542 464 1383 187 0 14
## rent_novhcE rent_novhcM geometry
## 168 503 132 POINT (-84.41168 33.6952)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.36778 ymin: 33.69356 xmax: -84.36778 ymax: 33.69356
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 169 13121007002 Census Tract 70.02 Fulton County Georgia 45033 10680 3126
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 169 848 69 62 2964 877 1122 238 11 17
## rent_novhcE rent_novhcM geometry
## 169 138 159 POINT (-84.36778 33.69356)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.46877 ymin: 33.64562 xmax: -84.46877 ymax: 33.64562
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 170 13121010603 Census Tract 106.03 Fulton County Georgia 39854 16274 4557
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 170 1222 33 26 4299 1208 1469 286 0 14
## rent_novhcE rent_novhcM geometry
## 170 348 154 POINT (-84.46877 33.64562)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.36685 ymin: 33.65979 xmax: -84.36685 ymax: 33.65979
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 171 13121007200 Census Tract 72 Fulton County Georgia NA NA 2268
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 171 601 67 96 2055 576 968 526 23 26
## rent_novhcE rent_novhcM geometry
## 171 36 34 POINT (-84.36685 33.65979)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.45886 ymin: 33.76423 xmax: -84.45886 ymax: 33.76423
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 172 13121008301 Census Tract 83.01 Fulton County Georgia 27340 8396 2670
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 172 749 236 220 2261 687 1019 356 87 57
## rent_novhcE rent_novhcM geometry
## 172 272 166 POINT (-84.45886 33.76423)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.43904 ymin: 33.73793 xmax: -84.43904 ymax: 33.73793
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 173 13121006000 Census Tract 60 Fulton County Georgia 42325 11969 3686
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 173 838 280 125 3308 847 1447 238 51 44
## rent_novhcE rent_novhcM geometry
## 173 251 92 POINT (-84.43904 33.73793)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.4621 ymin: 33.71092 xmax: -84.4621 ymax: 33.71092
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 174 13121007602 Census Tract 76.02 Fulton County Georgia 38219 11291 2979
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 174 1063 105 63 2821 1046 1019 159 6 8
## rent_novhcE rent_novhcM geometry
## 174 174 99 POINT (-84.4621 33.71092)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.3709 ymin: 33.73216 xmax: -84.3709 ymax: 33.73216
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 175 13121005300 Census Tract 53 Fulton County Georgia 109068 17239 3927
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 175 443 2528 348 985 249 1809 219 28 20
## rent_novhcE rent_novhcM geometry
## 175 94 73 POINT (-84.3709 33.73216)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.35556 ymin: 33.76759 xmax: -84.35556 ymax: 33.76759
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 176 13121001600 Census Tract 16 Fulton County Georgia 97623 16457 2322
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 176 308 1886 291 138 135 1350 197 0 14
## rent_novhcE rent_novhcM geometry
## 176 104 79 POINT (-84.35556 33.76759)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.35462 ymin: 33.69634 xmax: -84.35462 ymax: 33.69634
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 177 13121007100 Census Tract 71 Fulton County Georgia 25208 6136 2663
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 177 560 241 169 2405 561 959 170 53 32
## rent_novhcE rent_novhcM geometry
## 177 147 80 POINT (-84.35462 33.69634)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.44356 ymin: 33.84367 xmax: -84.44356 ymax: 33.84367
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 178 13121009700 Census Tract 97 Fulton County Georgia 250001 NA 3952
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 178 528 3345 516 356 200 1617 243 31 28
## rent_novhcE rent_novhcM geometry
## 178 0 14 POINT (-84.44356 33.84367)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.26242 ymin: 34.0044 xmax: -84.26242 ymax: 34.0044
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 180 13121011424 Census Tract 114.24 Fulton County Georgia 96884 23331 6178
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 180 1042 4088 852 1113 477 2271 335 48 71
## rent_novhcE rent_novhcM geometry
## 180 0 20 POINT (-84.26242 34.0044)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.39516 ymin: 33.88154 xmax: -84.39516 ymax: 33.88154
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 181 13121010211 Census Tract 102.11 Fulton County Georgia 162763 52378 3000
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 181 437 2703 412 150 86 1230 206 0 14
## rent_novhcE rent_novhcM geometry
## 181 12 20 POINT (-84.39516 33.88154)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.3651 ymin: 33.74209 xmax: -84.3651 ymax: 33.74209
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 182 13121005000 Census Tract 50 Fulton County Georgia 78732 6557 2651
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 182 579 1590 450 791 297 1333 202 20 23
## rent_novhcE rent_novhcM geometry
## 182 127 90 POINT (-84.3651 33.74209)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.39483 ymin: 33.85986 xmax: -84.39483 ymax: 33.85986
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 183 13121009900 Census Tract 99 Fulton County Georgia 187788 77518 4939
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 183 725 4756 703 18 28 1973 215 0 14
## rent_novhcE rent_novhcM geometry
## 183 0 14 POINT (-84.39483 33.85986)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.41266 ymin: 33.75908 xmax: -84.41266 ymax: 33.75908
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 186 13121002500 Census Tract 25 Fulton County Georgia 33615 7695 3175
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 186 657 169 125 2695 638 1145 183 1 5
## rent_novhcE rent_novhcM geometry
## 186 546 178 POINT (-84.41266 33.75908)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.35575 ymin: 33.89793 xmax: -84.35575 ymax: 33.89793
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 187 13121010115 Census Tract 101.15 Fulton County Georgia 134318 23095 2776
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 187 464 2007 235 338 226 1136 100 0 14
## rent_novhcE rent_novhcM geometry
## 187 40 41 POINT (-84.35575 33.89793)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.36267 ymin: 33.59653 xmax: -84.36267 ymax: 33.59653
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 188 13063040307 Census Tract 403.07 Clayton County Georgia 51039 16035 4393
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 188 751 1437 626 1495 442 1371 209 15 20
## rent_novhcE rent_novhcM geometry
## 188 83 73 POINT (-84.36267 33.59653)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.44132 ymin: 33.60519 xmax: -84.44132 ymax: 33.60519
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 189 13063040204 Census Tract 402.04 Clayton County Georgia 44158 7800 5045
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 189 760 101 74 4640 709 1952 192 5 8
## rent_novhcE rent_novhcM geometry
## 189 254 101 POINT (-84.44132 33.60519)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.3163 ymin: 33.75595 xmax: -84.3163 ymax: 33.75595
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 191 13089020801 Census Tract 208.01 DeKalb County Georgia 127500 17667 2718
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 191 462 1760 447 589 223 980 134 8 14
## rent_novhcE rent_novhcM geometry
## 191 6 12 POINT (-84.3163 33.75595)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.29916 ymin: 33.83241 xmax: -84.29916 ymax: 33.83241
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 192 13089021604 Census Tract 216.04 DeKalb County Georgia 193750 44190 3317
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 192 456 2859 387 104 95 1403 268 3 7
## rent_novhcE rent_novhcM geometry
## 192 0 14 POINT (-84.29916 33.83241)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.15894 ymin: 33.83542 xmax: -84.15894 ymax: 33.83542
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 193 13089021912 Census Tract 219.12 DeKalb County Georgia 163750 27262 3620
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 193 446 2176 296 1041 250 1331 149 23 36
## rent_novhcE rent_novhcM geometry
## 193 0 14 POINT (-84.15894 33.83542)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.27628 ymin: 33.93358 xmax: -84.27628 ymax: 33.93358
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 194 13089021305 Census Tract 213.05 DeKalb County Georgia 57793 13415 5536
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 194 940 2459 490 954 385 1537 209 0 20
## rent_novhcE rent_novhcM geometry
## 194 161 94 POINT (-84.27628 33.93358)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.27437 ymin: 33.78648 xmax: -84.27437 ymax: 33.78648
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 195 13089022203 Census Tract 222.03 DeKalb County Georgia 74386 10454 2308
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 195 532 1068 185 769 436 1105 159 0 14
## rent_novhcE rent_novhcM geometry
## 195 192 83 POINT (-84.27437 33.78648)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.18205 ymin: 33.71447 xmax: -84.18205 ymax: 33.71447
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 196 13089023214 Census Tract 232.14 DeKalb County Georgia 49650 14993 5015
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 196 750 135 91 4865 781 1993 175 23 38
## rent_novhcE rent_novhcM geometry
## 196 266 142 POINT (-84.18205 33.71447)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.33792 ymin: 33.88819 xmax: -84.33792 ymax: 33.88819
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 197 13089021101 Census Tract 211.01 DeKalb County Georgia 217917 46886 4182
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 197 634 3458 586 93 78 1410 189 0 14
## rent_novhcE rent_novhcM geometry
## 197 0 14 POINT (-84.33792 33.88819)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.23943 ymin: 33.87618 xmax: -84.23943 ymax: 33.87618
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 198 13089021808 Census Tract 218.08 DeKalb County Georgia 96891 10943 5069
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 198 729 2943 582 1062 410 1567 135 0 20
## rent_novhcE rent_novhcM geometry
## 198 29 31 POINT (-84.23943 33.87618)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.23309 ymin: 33.7912 xmax: -84.23309 ymax: 33.7912
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 199 13089022005 Census Tract 220.05 DeKalb County Georgia 41526 3380 4939
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 199 792 745 299 3444 629 1608 130 34 37
## rent_novhcE rent_novhcM geometry
## 199 155 72 POINT (-84.23309 33.7912)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.25168 ymin: 33.77814 xmax: -84.25168 ymax: 33.77814
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 200 13089023113 Census Tract 231.13 DeKalb County Georgia 30888 4888 2692
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 200 666 791 280 1555 569 1410 367 21 31
## rent_novhcE rent_novhcM geometry
## 200 189 83 POINT (-84.25168 33.77814)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.15697 ymin: 33.6815 xmax: -84.15697 ymax: 33.6815
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 202 13089023427 Census Tract 234.27 DeKalb County Georgia 69202 7581 3035
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 202 634 208 210 2706 614 924 120 14 17
## rent_novhcE rent_novhcM geometry
## 202 7 11 POINT (-84.15697 33.6815)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.34972 ymin: 33.64341 xmax: -84.34972 ymax: 33.64341
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 203 13063040309 Census Tract 403.09 Clayton County Georgia 32202 15352 3048
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 203 665 933 553 1975 690 1301 332 42 69
## rent_novhcE rent_novhcM geometry
## 203 156 124 POINT (-84.34972 33.64341)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.32647 ymin: 33.58945 xmax: -84.32647 ymax: 33.58945
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 205 13063040419 Census Tract 404.19 Clayton County Georgia 45731 7548 7200
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 205 2060 608 186 4969 1936 1988 381 71 61
## rent_novhcE rent_novhcM geometry
## 205 332 245 POINT (-84.32647 33.58945)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.26843 ymin: 33.61148 xmax: -84.26843 ymax: 33.61148
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 206 13063040421 Census Tract 404.21 Clayton County Georgia 57540 15732 5572
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 206 923 719 163 4644 862 2023 243 0 20
## rent_novhcE rent_novhcM geometry
## 206 0 20 POINT (-84.26843 33.61148)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.38268 ymin: 33.58405 xmax: -84.38268 ymax: 33.58405
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 207 13063040422 Census Tract 404.22 Clayton County Georgia 32031 16929 2396
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 207 457 66 56 1819 381 982 130 11 18
## rent_novhcE rent_novhcM geometry
## 207 169 100 POINT (-84.38268 33.58405)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.33917 ymin: 33.87457 xmax: -84.33917 ymax: 33.87457
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 209 13089021103 Census Tract 211.03 DeKalb County Georgia 123807 20268 4873
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 209 767 3645 642 662 285 2015 207 16 24
## rent_novhcE rent_novhcM geometry
## 209 104 84 POINT (-84.33917 33.87457)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.17671 ymin: 33.75279 xmax: -84.17671 ymax: 33.75279
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 210 13089023217 Census Tract 232.17 DeKalb County Georgia 53750 23307 4682
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 210 1428 146 94 4480 1375 1378 286 20 32
## rent_novhcE rent_novhcM geometry
## 210 23 38 POINT (-84.17671 33.75279)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.14178 ymin: 33.75779 xmax: -84.14178 ymax: 33.75779
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 211 13089023329 Census Tract 233.29 DeKalb County Georgia 63893 13275 4002
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 211 610 143 123 3708 646 1422 140 27 47
## rent_novhcE rent_novhcM geometry
## 211 0 14 POINT (-84.14178 33.75779)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.15453 ymin: 33.78118 xmax: -84.15453 ymax: 33.78118
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 212 13089023322 Census Tract 233.22 DeKalb County Georgia 50488 25400 3241
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 212 657 128 186 2894 662 1046 150 15 25
## rent_novhcE rent_novhcM geometry
## 212 69 84 POINT (-84.15453 33.78118)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.22331 ymin: 33.6479 xmax: -84.22331 ymax: 33.6479
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 213 13089023437 Census Tract 234.37 DeKalb County Georgia 74302 11293 6672
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 213 1115 144 139 6017 1131 2324 292 0 20
## rent_novhcE rent_novhcM geometry
## 213 39 34 POINT (-84.22331 33.6479)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.21272 ymin: 33.7921 xmax: -84.21272 ymax: 33.7921
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 215 13089021916 Census Tract 219.16 DeKalb County Georgia 45469 7166 2815
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 215 505 518 193 2246 454 1225 181 0 14
## rent_novhcE rent_novhcM geometry
## 215 149 117 POINT (-84.21272 33.7921)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.28967 ymin: 33.85422 xmax: -84.28967 ymax: 33.85422
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 216 13089021608 Census Tract 216.08 DeKalb County Georgia 54653 18036 3539
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 216 529 1665 352 1189 420 1893 338 0 14
## rent_novhcE rent_novhcM geometry
## 216 106 117 POINT (-84.28967 33.85422)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.25181 ymin: 33.85442 xmax: -84.25181 ymax: 33.85442
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 217 13089021820 Census Tract 218.20 DeKalb County Georgia 63165 13065 2410
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 217 254 699 237 1376 276 1358 152 16 27
## rent_novhcE rent_novhcM geometry
## 217 66 82 POINT (-84.25181 33.85442)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.31688 ymin: 33.90903 xmax: -84.31688 ymax: 33.90903
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 218 13089021220 Census Tract 212.20 DeKalb County Georgia 128773 37907 3741
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 218 694 2934 681 568 373 1450 209 0 14
## rent_novhcE rent_novhcM geometry
## 218 0 14 POINT (-84.31688 33.90903)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.32587 ymin: 33.93013 xmax: -84.32587 ymax: 33.93013
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 219 13089021227 Census Tract 212.27 DeKalb County Georgia 88688 15941 5183
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 219 730 2896 429 618 465 2244 291 91 103
## rent_novhcE rent_novhcM geometry
## 219 156 163 POINT (-84.32587 33.93013)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.21004 ymin: 33.86607 xmax: -84.21004 ymax: 33.86607
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 220 13089021822 Census Tract 218.22 DeKalb County Georgia 81737 18510 3789
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 220 519 3393 495 223 103 1632 197 21 32
## rent_novhcE rent_novhcM geometry
## 220 90 79 POINT (-84.21004 33.86607)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.3295 ymin: 33.9231 xmax: -84.3295 ymax: 33.9231
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 221 13089021226 Census Tract 212.26 DeKalb County Georgia 80353 11219 2631
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 221 596 805 286 902 455 1787 339 0 14
## rent_novhcE rent_novhcM geometry
## 221 22 39 POINT (-84.3295 33.9231)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.22267 ymin: 33.80699 xmax: -84.22267 ymax: 33.80699
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 222 13089022015 Census Tract 220.15 DeKalb County Georgia 52917 36983 2457
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 222 755 372 192 1438 730 700 236 35 38
## rent_novhcE rent_novhcM geometry
## 222 0 14 POINT (-84.22267 33.80699)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.34075 ymin: 33.74085 xmax: -84.34075 ymax: 33.74085
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 223 13089020901 Census Tract 209.01 DeKalb County Georgia 102279 23153 2956
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 223 394 1837 387 829 334 1451 167 13 21
## rent_novhcE rent_novhcM geometry
## 223 124 73 POINT (-84.34075 33.74085)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.15651 ymin: 33.69607 xmax: -84.15651 ymax: 33.69607
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 224 13089023430 Census Tract 234.30 DeKalb County Georgia 31091 8145 4278
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 224 727 55 61 4223 721 1642 201 0 14
## rent_novhcE rent_novhcM geometry
## 224 121 80 POINT (-84.15651 33.69607)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.20349 ymin: 33.77231 xmax: -84.20349 ymax: 33.77231
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 225 13089023220 Census Tract 232.20 DeKalb County Georgia 55291 16606 3198
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 225 740 399 208 2437 802 1012 127 70 61
## rent_novhcE rent_novhcM geometry
## 225 35 43 POINT (-84.20349 33.77231)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.32605 ymin: 33.79667 xmax: -84.32605 ymax: 33.79667
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 226 13089022404 Census Tract 224.04 DeKalb County Georgia 35323 7071 3756
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 226 369 1941 291 941 247 853 131 0 14
## rent_novhcE rent_novhcM geometry
## 226 201 90 POINT (-84.32605 33.79667)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.48298 ymin: 33.74879 xmax: -84.48298 ymax: 33.74879
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 227 13121008103 Census Tract 81.03 Fulton County Georgia 26107 1661 3448
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 227 494 116 155 3249 511 1579 238 0 14
## rent_novhcE rent_novhcM geometry
## 227 360 162 POINT (-84.48298 33.74879)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.54091 ymin: 33.57815 xmax: -84.54091 ymax: 33.57815
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 231 13121010524 Census Tract 105.24 Fulton County Georgia 44213 14690 2711
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 231 719 38 45 2584 731 1060 291 0 14
## rent_novhcE rent_novhcM geometry
## 231 64 98 POINT (-84.54091 33.57815)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.49853 ymin: 33.57994 xmax: -84.49853 ymax: 33.57994
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 232 13121010531 Census Tract 105.31 Fulton County Georgia 54730 24857 2124
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 232 347 157 164 1906 440 904 189 73 56
## rent_novhcE rent_novhcM geometry
## 232 0 14 POINT (-84.49853 33.57994)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.36445 ymin: 33.8408 xmax: -84.36445 ymax: 33.8408
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 233 13121009606 Census Tract 96.06 Fulton County Georgia 236635 70827 1381
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 233 266 1266 318 0 14 463 72 0 14
## rent_novhcE rent_novhcM geometry
## 233 0 14 POINT (-84.36445 33.8408)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.55722 ymin: 33.56716 xmax: -84.55722 ymax: 33.56716
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 234 13121010528 Census Tract 105.28 Fulton County Georgia 40063 26563 3929
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 234 875 598 428 2803 896 1583 464 48 76
## rent_novhcE rent_novhcM geometry
## 234 52 88 POINT (-84.55722 33.56716)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.52177 ymin: 33.71311 xmax: -84.52177 ymax: 33.71311
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 235 13121007810 Census Tract 78.10 Fulton County Georgia 39647 17356 5114
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 235 1197 46 72 4787 1250 2018 529 0 20
## rent_novhcE rent_novhcM geometry
## 235 138 125 POINT (-84.52177 33.71311)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.52865 ymin: 33.67454 xmax: -84.52865 ymax: 33.67454
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 237 13121007710 Census Tract 77.10 Fulton County Georgia 26373 22836 2647
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 237 898 70 77 2552 894 1937 779 0 14
## rent_novhcE rent_novhcM geometry
## 237 753 803 POINT (-84.52865 33.67454)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.50807 ymin: 33.56843 xmax: -84.50807 ymax: 33.56843
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 238 13121010532 Census Tract 105.32 Fulton County Georgia 37987 23840 2758
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 238 952 0 14 2758 952 1196 303 62 105
## rent_novhcE rent_novhcM geometry
## 238 136 171 POINT (-84.50807 33.56843)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.46769 ymin: 33.57262 xmax: -84.46769 ymax: 33.57262
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 239 13121010517 Census Tract 105.17 Fulton County Georgia 70254 19019 4469
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 239 648 85 109 4144 688 1580 372 46 65
## rent_novhcE rent_novhcM geometry
## 239 44 40 POINT (-84.46769 33.57262)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.38315 ymin: 33.78303 xmax: -84.38315 ymax: 33.78303
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 241 13121001102 Census Tract 11.02 Fulton County Georgia 145208 29923 2840
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 241 595 2319 492 114 86 1963 445 51 61
## rent_novhcE rent_novhcM geometry
## 241 273 153 POINT (-84.38315 33.78303)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.38659 ymin: 33.76587 xmax: -84.38659 ymax: 33.76587
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 242 13121001902 Census Tract 19.02 Fulton County Georgia 60417 10445 2056
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 242 548 606 169 1207 447 1458 282 60 61
## rent_novhcE rent_novhcM geometry
## 242 210 156 POINT (-84.38659 33.76587)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.38039 ymin: 33.79932 xmax: -84.38039 ymax: 33.79932
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 243 13121000502 Census Tract 5.02 Fulton County Georgia 108641 29366 1821
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 243 250 1421 311 279 187 861 125 0 14
## rent_novhcE rent_novhcM geometry
## 243 40 30 POINT (-84.38039 33.79932)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.35865 ymin: 33.81579 xmax: -84.35865 ymax: 33.81579
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 244 13121009203 Census Tract 92.03 Fulton County Georgia 69935 11948 2157
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 244 516 1000 247 956 444 1581 422 17 28
## rent_novhcE rent_novhcM geometry
## 244 321 304 POINT (-84.35865 33.81579)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.40445 ymin: 33.89969 xmax: -84.40445 ymax: 33.89969
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 245 13121010222 Census Tract 102.22 Fulton County Georgia 205139 79346 2696
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 245 826 2484 814 65 63 921 194 0 14
## rent_novhcE rent_novhcM geometry
## 245 0 14 POINT (-84.40445 33.89969)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.36688 ymin: 33.9918 xmax: -84.36688 ymax: 33.9918
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 246 13121010215 Census Tract 102.15 Fulton County Georgia 109820 17716 1508
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 246 387 1229 322 240 183 730 203 0 14
## rent_novhcE rent_novhcM geometry
## 246 0 14 POINT (-84.36688 33.9918)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.3767 ymin: 33.94996 xmax: -84.3767 ymax: 33.94996
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 247 13121010216 Census Tract 102.16 Fulton County Georgia 88929 28257 3890
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 247 913 2427 603 1144 848 1416 220 13 20
## rent_novhcE rent_novhcM geometry
## 247 21 34 POINT (-84.3767 33.94996)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.39319 ymin: 33.79206 xmax: -84.39319 ymax: 33.79206
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 250 13121000501 Census Tract 5.01 Fulton County Georgia 90702 33965 3098
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 250 654 1909 616 602 291 1802 330 32 37
## rent_novhcE rent_novhcM geometry
## 250 93 68 POINT (-84.39319 33.79206)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.36369 ymin: 33.94434 xmax: -84.36369 ymax: 33.94434
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 252 13121010127 Census Tract 101.27 Fulton County Georgia 125227 39260 2404
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 252 547 1319 417 707 438 936 158 0 14
## rent_novhcE rent_novhcM geometry
## 252 77 57 POINT (-84.36369 33.94434)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.37303 ymin: 33.88292 xmax: -84.37303 ymax: 33.88292
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 256 13121010136 Census Tract 101.36 Fulton County Georgia 89167 86294 3310
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 256 776 3024 761 159 152 1552 422 14 24
## rent_novhcE rent_novhcM geometry
## 256 88 84 POINT (-84.37303 33.88292)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.49205 ymin: 33.65169 xmax: -84.49205 ymax: 33.65169
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 259 13121011307 Census Tract 113.07 Fulton County Georgia 33633 8773 4319
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 259 782 59 46 4100 785 1817 290 13 17
## rent_novhcE rent_novhcM geometry
## 259 379 270 POINT (-84.49205 33.65169)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.40589 ymin: 33.79996 xmax: -84.40589 ymax: 33.79996
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 260 13121008908 Census Tract 89.08 Fulton County Georgia 59094 11422 1908
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 260 511 870 411 984 512 962 217 0 14
## rent_novhcE rent_novhcM geometry
## 260 76 87 POINT (-84.40589 33.79996)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.55474 ymin: 33.69139 xmax: -84.55474 ymax: 33.69139
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 261 13121010305 Census Tract 103.05 Fulton County Georgia 70625 7806 5388
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 261 1252 1 4 5356 1251 1618 170 23 37
## rent_novhcE rent_novhcM geometry
## 261 69 86 POINT (-84.55474 33.69139)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.36769 ymin: 33.94371 xmax: -84.36769 ymax: 33.94371
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 262 13121010126 Census Tract 101.26 Fulton County Georgia 69286 14667 2577
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 262 452 1814 425 591 249 1484 323 29 35
## rent_novhcE rent_novhcM geometry
## 262 67 64 POINT (-84.36769 33.94371)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.37556 ymin: 33.82248 xmax: -84.37556 ymax: 33.82248
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 263 13121009302 Census Tract 93.02 Fulton County Georgia 74342 27901 1962
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 263 269 1826 254 35 58 1066 149 0 14
## rent_novhcE rent_novhcM geometry
## 263 114 121 POINT (-84.37556 33.82248)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.41934 ymin: 33.8446 xmax: -84.41934 ymax: 33.8446
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 264 13121009803 Census Tract 98.03 Fulton County Georgia NA NA 2683
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 264 784 2482 767 192 117 1582 465 0 14
## rent_novhcE rent_novhcM geometry
## 264 144 101 POINT (-84.41934 33.8446)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.37404 ymin: 33.83926 xmax: -84.37404 ymax: 33.83926
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 265 13121009605 Census Tract 96.05 Fulton County Georgia 90294 6780 2491
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 265 650 1604 630 616 251 1728 326 0 14
## rent_novhcE rent_novhcM geometry
## 265 279 134 POINT (-84.37404 33.83926)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.17523 ymin: 33.73484 xmax: -84.17523 ymax: 33.73484
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 266 13089023212 Census Tract 232.12 DeKalb County Georgia 67115 15380 3924
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 266 963 100 67 3685 965 1512 330 11 17
## rent_novhcE rent_novhcM geometry
## 266 47 79 POINT (-84.17523 33.73484)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.24004 ymin: 33.69146 xmax: -84.24004 ymax: 33.69146
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 267 13089023413 Census Tract 234.13 DeKalb County Georgia 72283 15359 4173
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 267 646 167 90 3881 684 1356 210 0 14
## rent_novhcE rent_novhcM geometry
## 267 0 14 POINT (-84.24004 33.69146)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.2721 ymin: 33.724 xmax: -84.2721 ymax: 33.724
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 268 13089023504 Census Tract 235.04 DeKalb County Georgia 40330 5347 3368
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 268 495 226 115 3034 499 1274 141 55 40
## rent_novhcE rent_novhcM geometry
## 268 92 55 POINT (-84.2721 33.724)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.34028 ymin: 33.7756 xmax: -84.34028 ymax: 33.7756
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 269 13089020200 Census Tract 202 DeKalb County Georgia 85673 9358 1953
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 269 339 1421 283 71 51 1065 170 0 14
## rent_novhcE rent_novhcM geometry
## 269 31 50 POINT (-84.34028 33.7756)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.25017 ymin: 33.81951 xmax: -84.25017 ymax: 33.81951
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 270 13089022001 Census Tract 220.01 DeKalb County Georgia 76563 19457 4779
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 270 878 3411 610 768 157 1840 211 6 11
## rent_novhcE rent_novhcM geometry
## 270 127 88 POINT (-84.25017 33.81951)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.26843 ymin: 33.77027 xmax: -84.26843 ymax: 33.77027
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 271 13089023000 Census Tract 230 DeKalb County Georgia 90694 12226 2226
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 271 210 1938 211 160 72 993 85 45 29
## rent_novhcE rent_novhcM geometry
## 271 27 31 POINT (-84.26843 33.77027)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.25908 ymin: 33.7627 xmax: -84.25908 ymax: 33.7627
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 272 13089023102 Census Tract 231.02 DeKalb County Georgia 40016 4960 3293
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 272 394 1272 270 1655 260 1457 154 8 13
## rent_novhcE rent_novhcM geometry
## 272 413 100 POINT (-84.25908 33.7627)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.33869 ymin: 33.71799 xmax: -84.33869 ymax: 33.71799
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 273 13089023801 Census Tract 238.01 DeKalb County Georgia 84209 30612 4495
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 273 726 1458 282 2672 732 1901 325 48 51
## rent_novhcE rent_novhcM geometry
## 273 54 39 POINT (-84.33869 33.71799)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.33324 ymin: 33.69527 xmax: -84.33324 ymax: 33.69527
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 274 13089023802 Census Tract 238.02 DeKalb County Georgia 64772 8646 4166
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 274 650 1041 213 2745 624 1415 200 32 32
## rent_novhcE rent_novhcM geometry
## 274 194 87 POINT (-84.33324 33.69527)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.34162 ymin: 33.75265 xmax: -84.34162 ymax: 33.75265
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 275 13089020500 Census Tract 205 DeKalb County Georgia 73382 27540 3347
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 275 574 1629 409 1260 358 1646 328 3 6
## rent_novhcE rent_novhcM geometry
## 275 147 78 POINT (-84.34162 33.75265)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.32181 ymin: 33.77973 xmax: -84.32181 ymax: 33.77973
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 276 13089022403 Census Tract 224.03 DeKalb County Georgia 204167 35005 3930
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 276 648 3617 640 110 106 1366 190 7 12
## rent_novhcE rent_novhcM geometry
## 276 14 23 POINT (-84.32181 33.77973)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.28958 ymin: 33.76306 xmax: -84.28958 ymax: 33.76306
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 277 13089022800 Census Tract 228 DeKalb County Georgia 118056 52366 4543
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 277 644 3124 432 679 176 1344 157 0 14
## rent_novhcE rent_novhcM geometry
## 277 0 14 POINT (-84.28958 33.76306)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.29145 ymin: 33.70319 xmax: -84.29145 ymax: 33.70319
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 278 13089023411 Census Tract 234.11 DeKalb County Georgia 46615 9835 3806
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 278 488 133 91 3631 506 1546 237 73 60
## rent_novhcE rent_novhcM geometry
## 278 123 69 POINT (-84.29145 33.70319)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.28078 ymin: 33.81343 xmax: -84.28078 ymax: 33.81343
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 279 13089022302 Census Tract 223.02 DeKalb County Georgia 86368 14552 3620
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 279 266 2460 275 536 222 1748 92 33 39
## rent_novhcE rent_novhcM geometry
## 279 49 76 POINT (-84.28078 33.81343)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.29907 ymin: 33.88188 xmax: -84.29907 ymax: 33.88188
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 280 13089021204 Census Tract 212.04 DeKalb County Georgia 26660 4403 2878
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 280 731 843 319 76 86 761 134 0 14
## rent_novhcE rent_novhcM geometry
## 280 322 105 POINT (-84.29907 33.88188)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.42672 ymin: 33.58767 xmax: -84.42672 ymax: 33.58767
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 281 13063040510 Census Tract 405.10 Clayton County Georgia 65110 16729 4342
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 281 688 147 97 3647 637 1519 236 0 14
## rent_novhcE rent_novhcM geometry
## 281 90 90 POINT (-84.42672 33.58767)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.41277 ymin: 33.61338 xmax: -84.41277 ymax: 33.61338
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 284 13063040202 Census Tract 402.02 Clayton County Georgia 35530 3682 2832
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 284 666 141 75 2242 688 889 100 0 14
## rent_novhcE rent_novhcM geometry
## 284 168 55 POINT (-84.41277 33.61338)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.44669 ymin: 33.58192 xmax: -84.44669 ymax: 33.58192
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 285 13063040509 Census Tract 405.09 Clayton County Georgia 53904 12234 4470
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 285 587 185 112 4159 588 1702 279 8 13
## rent_novhcE rent_novhcM geometry
## 285 9 13 POINT (-84.44669 33.58192)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.53821 ymin: 33.75288 xmax: -84.53821 ymax: 33.75288
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 286 13121007805 Census Tract 78.05 Fulton County Georgia 48641 13155 4771
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 286 1704 468 519 4258 1602 1793 634 17 28
## rent_novhcE rent_novhcM geometry
## 286 673 535 POINT (-84.53821 33.75288)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.45556 ymin: 33.72455 xmax: -84.45556 ymax: 33.72455
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 287 13121008000 Census Tract 80 Fulton County Georgia 40673 11352 5760
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 287 1172 250 115 5196 1132 2329 440 103 55
## rent_novhcE rent_novhcM geometry
## 287 369 339 POINT (-84.45556 33.72455)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.37354 ymin: 33.71886 xmax: -84.37354 ymax: 33.71886
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 288 13121006400 Census Tract 64 Fulton County Georgia 41000 14934 902
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 288 217 299 84 471 170 410 93 42 66
## rent_novhcE rent_novhcM geometry
## 288 97 55 POINT (-84.37354 33.71886)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.42697 ymin: 33.67425 xmax: -84.42697 ymax: 33.67425
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 289 13121011000 Census Tract 110 Fulton County Georgia 35373 11790 3008
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 289 661 680 270 1969 569 1006 238 12 14
## rent_novhcE rent_novhcM geometry
## 289 160 71 POINT (-84.42697 33.67425)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.35878 ymin: 33.71831 xmax: -84.35878 ymax: 33.71831
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 290 13121006900 Census Tract 69 Fulton County Georgia 76731 15868 3297
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 290 498 1762 339 1334 433 1394 168 18 25
## rent_novhcE rent_novhcM geometry
## 290 159 85 POINT (-84.35878 33.71831)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.35449 ymin: 33.73551 xmax: -84.35449 ymax: 33.73551
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 291 13121005200 Census Tract 52 Fulton County Georgia 132143 29052 4899
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 291 738 3654 515 663 458 1998 269 0 14
## rent_novhcE rent_novhcM geometry
## 291 18 32 POINT (-84.35449 33.73551)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.41711 ymin: 33.92519 xmax: -84.41711 ymax: 33.92519
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 292 13121010204 Census Tract 102.04 Fulton County Georgia 150375 24665 5333
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 292 702 5039 707 79 78 1927 244 42 54
## rent_novhcE rent_novhcM geometry
## 292 0 20 POINT (-84.41711 33.92519)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.38403 ymin: 34.0177 xmax: -84.38403 ymax: 34.0177
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 293 13121011423 Census Tract 114.23 Fulton County Georgia 138512 32546 5781
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 293 1154 4903 1082 222 152 2071 400 0 20
## rent_novhcE rent_novhcM geometry
## 293 24 34 POINT (-84.38403 34.0177)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.32896 ymin: 33.98267 xmax: -84.32896 ymax: 33.98267
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 294 13121010106 Census Tract 101.06 Fulton County Georgia 85174 13221 3914
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 294 467 2959 464 737 305 1823 204 0 14
## rent_novhcE rent_novhcM geometry
## 294 0 14 POINT (-84.32896 33.98267)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.27983 ymin: 33.96601 xmax: -84.27983 ymax: 33.96601
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 296 13121010108 Census Tract 101.08 Fulton County Georgia 113125 38677 4543
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 296 984 3763 968 219 110 1828 298 8 13
## rent_novhcE rent_novhcM geometry
## 296 141 138 POINT (-84.27983 33.96601)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.30421 ymin: 33.59076 xmax: -84.30421 ymax: 33.59076
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 297 13063040409 Census Tract 404.09 Clayton County Georgia 50688 6744 5931
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 297 775 818 294 3447 692 1950 270 15 23
## rent_novhcE rent_novhcM geometry
## 297 9 14 POINT (-84.30421 33.59076)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.39054 ymin: 33.56983 xmax: -84.39054 ymax: 33.56983
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 299 13063040521 Census Tract 405.21 Clayton County Georgia 37224 16742 3992
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 299 966 421 201 2538 764 1065 145 5 10
## rent_novhcE rent_novhcM geometry
## 299 64 63 POINT (-84.39054 33.56983)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.45267 ymin: 33.60474 xmax: -84.45267 ymax: 33.60474
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 301 13063040203 Census Tract 402.03 Clayton County Georgia 39500 3562 3911
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 301 726 138 109 3389 597 1646 188 0 14
## rent_novhcE rent_novhcM geometry
## 301 131 85 POINT (-84.45267 33.60474)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.4008 ymin: 33.58516 xmax: -84.4008 ymax: 33.58516
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 302 13063040522 Census Tract 405.22 Clayton County Georgia 40906 5580 4641
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 302 714 305 131 3475 706 1670 200 11 19
## rent_novhcE rent_novhcM geometry
## 302 138 75 POINT (-84.4008 33.58516)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.30644 ymin: 33.85467 xmax: -84.30644 ymax: 33.85467
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 303 13089021410 Census Tract 214.10 DeKalb County Georgia 67054 10739 5961
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 303 761 4046 597 727 288 2160 238 0 20
## rent_novhcE rent_novhcM geometry
## 303 196 97 POINT (-84.30644 33.85467)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.20478 ymin: 33.82132 xmax: -84.20478 ymax: 33.82132
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 304 13089021910 Census Tract 219.10 DeKalb County Georgia 41647 19381 6871
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 304 1507 874 247 5388 1514 2323 360 70 104
## rent_novhcE rent_novhcM geometry
## 304 184 129 POINT (-84.20478 33.82132)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.24095 ymin: 33.76477 xmax: -84.24095 ymax: 33.76477
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 305 13089023112 Census Tract 231.12 DeKalb County Georgia 29762 9678 4252
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 305 710 250 98 3603 723 1963 201 7 11
## rent_novhcE rent_novhcM geometry
## 305 589 179 POINT (-84.24095 33.76477)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.34428 ymin: 33.84043 xmax: -84.34428 ymax: 33.84043
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 306 13089021415 Census Tract 214.15 DeKalb County Georgia 118882 38552 3866
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 306 579 2794 587 197 84 1825 263 0 14
## rent_novhcE rent_novhcM geometry
## 306 92 60 POINT (-84.34428 33.84043)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.33397 ymin: 33.84729 xmax: -84.33397 ymax: 33.84729
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 307 13089021416 Census Tract 214.16 DeKalb County Georgia 114539 20367 2046
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 307 380 1381 340 125 93 901 135 0 14
## rent_novhcE rent_novhcM geometry
## 307 130 83 POINT (-84.33397 33.84729)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.30185 ymin: 33.74713 xmax: -84.30185 ymax: 33.74713
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 308 13089020802 Census Tract 208.02 DeKalb County Georgia 95417 27901 4415
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 308 735 1998 450 2110 614 1854 360 52 42
## rent_novhcE rent_novhcM geometry
## 308 138 73 POINT (-84.30185 33.74713)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.30368 ymin: 33.90123 xmax: -84.30368 ymax: 33.90123
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 309 13089021208 Census Tract 212.08 DeKalb County Georgia 73393 14120 5032
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 309 771 2966 436 1038 705 2222 335 83 74
## rent_novhcE rent_novhcM geometry
## 309 165 172 POINT (-84.30368 33.90123)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.22671 ymin: 33.76 xmax: -84.22671 ymax: 33.76
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 310 13089023111 Census Tract 231.11 DeKalb County Georgia 46367 8120 2320
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 310 375 223 113 1884 392 745 141 26 26
## rent_novhcE rent_novhcM geometry
## 310 0 14 POINT (-84.22671 33.76)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.50377 ymin: 33.64076 xmax: -84.50377 ymax: 33.64076
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 311 13121011306 Census Tract 113.06 Fulton County Georgia 36745 10176 2602
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 311 597 118 123 2175 441 1078 208 16 17
## rent_novhcE rent_novhcM geometry
## 311 164 69 POINT (-84.50377 33.64076)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.39965 ymin: 33.72376 xmax: -84.39965 ymax: 33.72376
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 312 13121006300 Census Tract 63 Fulton County Georgia 36143 5491 1668
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 312 382 83 67 1499 404 712 99 43 28
## rent_novhcE rent_novhcM geometry
## 312 220 77 POINT (-84.39965 33.72376)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.44033 ymin: 33.70657 xmax: -84.44033 ymax: 33.70657
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 313 13121007603 Census Tract 76.03 Fulton County Georgia 14630 2753 3943
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 313 840 101 73 3743 836 2001 181 0 14
## rent_novhcE rent_novhcM geometry
## 313 1128 226 POINT (-84.44033 33.70657)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.43956 ymin: 33.66133 xmax: -84.43956 ymax: 33.66133
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 314 13121012300 Census Tract 123 Fulton County Georgia 41907 4508 2933
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 314 852 697 166 1586 876 1259 401 0 14
## rent_novhcE rent_novhcM geometry
## 314 221 95 POINT (-84.43956 33.66133)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.37819 ymin: 33.78849 xmax: -84.37819 ymax: 33.78849
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 316 13121000400 Census Tract 4 Fulton County Georgia 121681 43416 1859
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 316 258 1638 220 140 75 1037 121 72 40
## rent_novhcE rent_novhcM geometry
## 316 32 50 POINT (-84.37819 33.78849)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.41061 ymin: 33.7319 xmax: -84.41061 ymax: 33.7319
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 317 13121005800 Census Tract 58 Fulton County Georgia 48235 21296 1253
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 317 328 257 97 735 216 542 99 32 25
## rent_novhcE rent_novhcM geometry
## 317 60 36 POINT (-84.41061 33.7319)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.36475 ymin: 33.74991 xmax: -84.36475 ymax: 33.74991
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 319 13121003200 Census Tract 32 Fulton County Georgia 111114 10676 2346
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 319 273 1822 218 175 112 1285 137 35 32
## rent_novhcE rent_novhcM geometry
## 319 30 29 POINT (-84.36475 33.74991)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.40295 ymin: 33.75188 xmax: -84.40295 ymax: 33.75188
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 320 13121003600 Census Tract 36 Fulton County Georgia 68859 19118 1132
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 320 267 190 96 891 264 893 221 14 11
## rent_novhcE rent_novhcM geometry
## 320 279 127 POINT (-84.40295 33.75188)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.39473 ymin: 33.76552 xmax: -84.39473 ymax: 33.76552
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 321 13121002100 Census Tract 21 Fulton County Georgia 83151 28417 2245
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 321 500 692 227 1280 376 1039 238 39 30
## rent_novhcE rent_novhcM geometry
## 321 97 56 POINT (-84.39473 33.76552)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.42312 ymin: 33.59994 xmax: -84.42312 ymax: 33.59994
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 328 13063040531 Census Tract 405.31 Clayton County Georgia 37268 4631 2356
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 328 359 84 52 2025 375 957 100 0 14
## rent_novhcE rent_novhcM geometry
## 328 115 80 POINT (-84.42312 33.59994)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.29731 ymin: 33.57543 xmax: -84.29731 ymax: 33.57543
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 329 13063040426 Census Tract 404.26 Clayton County Georgia 58854 43925 2832
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 329 578 795 444 1524 646 764 109 16 26
## rent_novhcE rent_novhcM geometry
## 329 0 14 POINT (-84.29731 33.57543)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.32022 ymin: 33.57599 xmax: -84.32022 ymax: 33.57599
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 332 13063040425 Census Tract 404.25 Clayton County Georgia 41683 9788 5258
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 332 1372 804 385 2430 1169 1448 235 34 50
## rent_novhcE rent_novhcM geometry
## 332 13 24 POINT (-84.32022 33.57599)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.23156 ymin: 33.89025 xmax: -84.23156 ymax: 33.89025
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 334 13089021816 Census Tract 218.16 DeKalb County Georgia 68929 17232 2461
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 334 598 1382 368 392 315 908 159 0 14
## rent_novhcE rent_novhcM geometry
## 334 58 45 POINT (-84.23156 33.89025)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.16799 ymin: 33.65835 xmax: -84.16799 ymax: 33.65835
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 335 13089023432 Census Tract 234.32 DeKalb County Georgia 80851 13507 3373
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 335 805 739 705 2460 777 958 178 0 14
## rent_novhcE rent_novhcM geometry
## 335 0 14 POINT (-84.16799 33.65835)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.21745 ymin: 33.68812 xmax: -84.21745 ymax: 33.68812
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 336 13089023447 Census Tract 234.47 DeKalb County Georgia 62589 20083 3214
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 336 695 341 342 2693 658 1251 308 26 41
## rent_novhcE rent_novhcM geometry
## 336 59 91 POINT (-84.21745 33.68812)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.21259 ymin: 33.80822 xmax: -84.21259 ymax: 33.80822
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 337 13089022016 Census Tract 220.16 DeKalb County Georgia 48894 10092 3693
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 337 668 249 182 2555 713 1127 192 28 38
## rent_novhcE rent_novhcM geometry
## 337 0 14 POINT (-84.21259 33.80822)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.2596 ymin: 33.67837 xmax: -84.2596 ymax: 33.67837
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 340 13089023438 Census Tract 234.38 DeKalb County Georgia 54228 9704 5437
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 340 716 71 80 4988 814 1976 213 140 107
## rent_novhcE rent_novhcM geometry
## 340 32 36 POINT (-84.2596 33.67837)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.30005 ymin: 33.84432 xmax: -84.30005 ymax: 33.84432
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 341 13089021609 Census Tract 216.09 DeKalb County Georgia 133523 25393 1711
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 341 262 1094 189 172 144 643 93 3 8
## rent_novhcE rent_novhcM geometry
## 341 26 46 POINT (-84.30005 33.84432)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.25914 ymin: 33.88494 xmax: -84.25914 ymax: 33.88494
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 342 13089021711 Census Tract 217.11 DeKalb County Georgia 52639 15176 2699
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 342 521 1749 508 121 101 830 107 37 59
## rent_novhcE rent_novhcM geometry
## 342 9 18 POINT (-84.25914 33.88494)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.22634 ymin: 33.86793 xmax: -84.22634 ymax: 33.86793
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 343 13089021821 Census Tract 218.21 DeKalb County Georgia 115662 36290 2990
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 343 491 2595 479 173 178 1199 221 22 31
## rent_novhcE rent_novhcM geometry
## 343 22 37 POINT (-84.22634 33.86793)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.31468 ymin: 33.79765 xmax: -84.31468 ymax: 33.79765
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 344 13089022405 Census Tract 224.05 DeKalb County Georgia 53631 6540 3156
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 344 816 1590 419 706 300 416 83 0 14
## rent_novhcE rent_novhcM geometry
## 344 20 14 POINT (-84.31468 33.79765)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.2638 ymin: 33.89947 xmax: -84.2638 ymax: 33.89947
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 345 13089021309 Census Tract 213.09 DeKalb County Georgia 40086 12493 1951
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 345 391 947 339 300 191 498 102 0 14
## rent_novhcE rent_novhcM geometry
## 345 88 79 POINT (-84.2638 33.89947)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.19247 ymin: 33.75498 xmax: -84.19247 ymax: 33.75498
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 346 13089023218 Census Tract 232.18 DeKalb County Georgia 26771 14520 3034
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 346 764 110 90 2597 535 1101 201 0 14
## rent_novhcE rent_novhcM geometry
## 346 401 109 POINT (-84.19247 33.75498)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.14718 ymin: 33.76946 xmax: -84.14718 ymax: 33.76946
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 347 13089023324 Census Tract 233.24 DeKalb County Georgia 76447 21540 3170
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 347 622 15 22 3024 623 1274 246 15 25
## rent_novhcE rent_novhcM geometry
## 347 27 44 POINT (-84.14718 33.76946)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.24225 ymin: 33.80103 xmax: -84.24225 ymax: 33.80103
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 348 13089022012 Census Tract 220.12 DeKalb County Georgia 28555 9440 2734
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 348 546 132 162 878 451 811 136 0 14
## rent_novhcE rent_novhcM geometry
## 348 165 97 POINT (-84.24225 33.80103)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.31533 ymin: 33.95779 xmax: -84.31533 ymax: 33.95779
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 349 13089021228 Census Tract 212.28 DeKalb County Georgia 240500 44422 3235
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 349 650 2904 679 0 14 1124 156 17 29
## rent_novhcE rent_novhcM geometry
## 349 0 14 POINT (-84.31533 33.95779)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.32983 ymin: 33.89829 xmax: -84.32983 ymax: 33.89829
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 350 13089021221 Census Tract 212.21 DeKalb County Georgia 81786 42095 2870
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 350 490 1913 448 303 169 1346 173 0 14
## rent_novhcE rent_novhcM geometry
## 350 25 41 POINT (-84.32983 33.89829)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.2609 ymin: 33.87499 xmax: -84.2609 ymax: 33.87499
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 351 13089021712 Census Tract 217.12 DeKalb County Georgia 38984 13240 2376
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 351 374 1100 388 894 433 1167 212 15 25
## rent_novhcE rent_novhcM geometry
## 351 141 174 POINT (-84.2609 33.87499)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.26421 ymin: 33.80905 xmax: -84.26421 ymax: 33.80905
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 352 13089022205 Census Tract 222.05 DeKalb County Georgia 69524 18999 4830
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 352 1167 2268 834 751 459 1616 219 13 20
## rent_novhcE rent_novhcM geometry
## 352 135 89 POINT (-84.26421 33.80905)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.27322 ymin: 33.79946 xmax: -84.27322 ymax: 33.79946
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 353 13089022206 Census Tract 222.06 DeKalb County Georgia 70491 9938 2941
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 353 474 1286 309 605 284 1284 155 12 20
## rent_novhcE rent_novhcM geometry
## 353 148 101 POINT (-84.27322 33.79946)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.25522 ymin: 33.83572 xmax: -84.25522 ymax: 33.83572
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 354 13089021708 Census Tract 217.08 DeKalb County Georgia 88750 35117 3747
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 354 759 2899 713 473 215 1454 250 22 37
## rent_novhcE rent_novhcM geometry
## 354 20 34 POINT (-84.25522 33.83572)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.33174 ymin: 33.73072 xmax: -84.33174 ymax: 33.73072
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 355 13089020902 Census Tract 209.02 DeKalb County Georgia 67115 15752 3112
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 355 728 1465 534 1373 299 1330 222 42 35
## rent_novhcE rent_novhcM geometry
## 355 148 108 POINT (-84.33174 33.73072)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.31393 ymin: 33.72595 xmax: -84.31393 ymax: 33.72595
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 356 13089023702 Census Tract 237.02 DeKalb County Georgia 33438 28001 3311
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 356 474 344 176 2837 510 1463 183 0 14
## rent_novhcE rent_novhcM geometry
## 356 116 107 POINT (-84.31393 33.72595)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.32656 ymin: 33.84873 xmax: -84.32656 ymax: 33.84873
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 357 13089021420 Census Tract 214.20 DeKalb County Georgia 46842 13594 1357
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 357 278 842 279 145 98 520 93 0 14
## rent_novhcE rent_novhcM geometry
## 357 136 64 POINT (-84.32656 33.84873)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.28815 ymin: 33.798 xmax: -84.28815 ymax: 33.798
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 358 13089022303 Census Tract 223.03 DeKalb County Georgia 88804 20881 3370
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 358 636 2636 638 331 165 1644 222 0 14
## rent_novhcE rent_novhcM geometry
## 358 77 56 POINT (-84.28815 33.798)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.22498 ymin: 33.83855 xmax: -84.22498 ymax: 33.83855
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 359 13089021818 Census Tract 218.18 DeKalb County Georgia 74880 6699 4566
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 359 921 2333 402 1734 916 1728 265 20 23
## rent_novhcE rent_novhcM geometry
## 359 87 90 POINT (-84.22498 33.83855)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.28463 ymin: 33.78151 xmax: -84.28463 ymax: 33.78151
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 360 13089022602 Census Tract 226.02 DeKalb County Georgia 173525 44927 2170
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 360 382 1570 321 120 116 712 128 10 19
## rent_novhcE rent_novhcM geometry
## 360 26 38 POINT (-84.28463 33.78151)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.35405 ymin: 33.97025 xmax: -84.35405 ymax: 33.97025
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 362 13121010134 Census Tract 101.34 Fulton County Georgia 70876 3332 2521
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 362 532 1295 466 724 388 1285 315 0 14
## rent_novhcE rent_novhcM geometry
## 362 102 100 POINT (-84.35405 33.97025)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.38016 ymin: 33.77878 xmax: -84.38016 ymax: 33.77878
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 363 13121001204 Census Tract 12.04 Fulton County Georgia 90040 28919 1845
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 363 244 1470 189 54 38 1216 198 134 165
## rent_novhcE rent_novhcM geometry
## 363 93 78 POINT (-84.38016 33.77878)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.38048 ymin: 33.77354 xmax: -84.38048 ymax: 33.77354
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 364 13121001203 Census Tract 12.03 Fulton County Georgia 65121 15105 2775
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 364 710 1947 591 559 407 1952 613 45 44
## rent_novhcE rent_novhcM geometry
## 364 306 130 POINT (-84.38048 33.77354)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.55571 ymin: 33.60997 xmax: -84.55571 ymax: 33.60997
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 367 13121010526 Census Tract 105.26 Fulton County Georgia 50337 16940 5230
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 367 1094 71 147 4341 987 1991 297 100 133
## rent_novhcE rent_novhcM geometry
## 367 84 142 POINT (-84.55571 33.60997)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.37726 ymin: 33.76914 xmax: -84.37726 ymax: 33.76914
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 368 13121001801 Census Tract 18.01 Fulton County Georgia NA NA 2419
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 368 783 848 394 1044 359 1697 426 166 252
## rent_novhcE rent_novhcM geometry
## 368 769 330 POINT (-84.37726 33.76914)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.20061 ymin: 34.01838 xmax: -84.20061 ymax: 34.01838
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 369 13121011628 Census Tract 116.28 Fulton County Georgia 98306 25469 4088
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 369 968 1899 693 529 415 1325 232 0 14
## rent_novhcE rent_novhcM geometry
## 369 17 24 POINT (-84.20061 34.01838)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.41376 ymin: 33.66064 xmax: -84.41376 ymax: 33.66064
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 373 13121010801 Census Tract 108.01 Fulton County Georgia 62543 20151 2363
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 373 652 835 374 995 328 975 248 12 24
## rent_novhcE rent_novhcM geometry
## 373 131 95 POINT (-84.41376 33.66064)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.44393 ymin: 33.78832 xmax: -84.44393 ymax: 33.78832
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 374 13121008702 Census Tract 87.02 Fulton County Georgia 46917 19662 2188
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 374 413 418 197 1752 424 1139 162 0 14
## rent_novhcE rent_novhcM geometry
## 374 186 114 POINT (-84.44393 33.78832)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.47427 ymin: 33.81577 xmax: -84.47427 ymax: 33.81577
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 375 13121008801 Census Tract 88.01 Fulton County Georgia 134338 39047 3041
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 375 1165 1272 240 698 557 979 261 0 14
## rent_novhcE rent_novhcM geometry
## 375 30 34 POINT (-84.47427 33.81577)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.41307 ymin: 33.81626 xmax: -84.41307 ymax: 33.81626
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 376 13121009002 Census Tract 90.02 Fulton County Georgia 250001 NA 2872
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 376 344 2691 302 29 43 904 112 0 14
## rent_novhcE rent_novhcM geometry
## 376 0 14 POINT (-84.41307 33.81626)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.49428 ymin: 33.70571 xmax: -84.49428 ymax: 33.70571
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 378 13121007707 Census Tract 77.07 Fulton County Georgia 49597 15967 2326
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 378 716 18 21 2243 719 998 202 69 60
## rent_novhcE rent_novhcM geometry
## 378 65 53 POINT (-84.49428 33.70571)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.38928 ymin: 33.70555 xmax: -84.38928 ymax: 33.70555
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 379 13121006702 Census Tract 67.02 Fulton County Georgia 35313 17705 1782
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 379 391 24 24 1618 375 777 104 10 16
## rent_novhcE rent_novhcM geometry
## 379 148 60 POINT (-84.38928 33.70555)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.3975 ymin: 33.7118 xmax: -84.3975 ymax: 33.7118
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 380 13121006701 Census Tract 67.01 Fulton County Georgia 25958 13203 2938
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 380 1924 128 84 2778 1906 918 251 0 14
## rent_novhcE rent_novhcM geometry
## 380 266 106 POINT (-84.3975 33.7118)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.38582 ymin: 33.83405 xmax: -84.38582 ymax: 33.83405
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 381 13121009503 Census Tract 95.03 Fulton County Georgia 47031 22293 1447
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 381 264 893 213 369 146 1052 197 22 36
## rent_novhcE rent_novhcM geometry
## 381 301 173 POINT (-84.38582 33.83405)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.4393 ymin: 33.82149 xmax: -84.4393 ymax: 33.82149
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 382 13121008906 Census Tract 89.06 Fulton County Georgia 166676 39177 2383
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 382 611 2072 627 108 87 911 156 88 127
## rent_novhcE rent_novhcM geometry
## 382 0 14 POINT (-84.4393 33.82149)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.51425 ymin: 33.62658 xmax: -84.51425 ymax: 33.62658
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 383 13121010530 Census Tract 105.30 Fulton County Georgia 42153 16920 3088
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 383 804 101 93 2824 794 1189 305 0 14
## rent_novhcE rent_novhcM geometry
## 383 82 73 POINT (-84.51425 33.62658)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.39693 ymin: 33.81328 xmax: -84.39693 ymax: 33.81328
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 384 13121009104 Census Tract 91.04 Fulton County Georgia 78733 10076 2498
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 384 443 1954 424 324 213 1699 248 67 72
## rent_novhcE rent_novhcM geometry
## 384 127 67 POINT (-84.39693 33.81328)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.36856 ymin: 33.82069 xmax: -84.36856 ymax: 33.82069
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 385 13121009405 Census Tract 94.05 Fulton County Georgia 69097 24949 4268
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 385 710 1754 386 1166 542 2179 474 0 14
## rent_novhcE rent_novhcM geometry
## 385 476 453 POINT (-84.36856 33.82069)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.36286 ymin: 33.78705 xmax: -84.36286 ymax: 33.78705
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 386 13121000202 Census Tract 2.02 Fulton County Georgia 171042 97717 3882
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 386 678 3354 691 125 57 1585 366 8 14
## rent_novhcE rent_novhcM geometry
## 386 0 14 POINT (-84.36286 33.78705)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.48036 ymin: 33.60877 xmax: -84.48036 ymax: 33.60877
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 387 13121010522 Census Tract 105.22 Fulton County Georgia 42830 6012 5974
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 387 1364 354 339 5179 1343 2247 541 15 25
## rent_novhcE rent_novhcM geometry
## 387 141 82 POINT (-84.48036 33.60877)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.47287 ymin: 33.80086 xmax: -84.47287 ymax: 33.80086
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 388 13121008701 Census Tract 87.01 Fulton County Georgia 38654 13737 3897
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 388 1033 447 348 3153 937 1358 282 22 25
## rent_novhcE rent_novhcM geometry
## 388 452 287 POINT (-84.47287 33.80086)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.36052 ymin: 33.82349 xmax: -84.36052 ymax: 33.82349
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 389 13121009406 Census Tract 94.06 Fulton County Georgia 74152 11979 1547
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 389 341 805 220 381 176 1039 203 0 14
## rent_novhcE rent_novhcM geometry
## 389 79 54 POINT (-84.36052 33.82349)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.34325 ymin: 34.0156 xmax: -84.34325 ymax: 34.0156
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 393 13121011438 Census Tract 114.38 Fulton County Georgia 101188 24383 5906
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 393 1769 2638 717 1259 833 2263 574 0 20
## rent_novhcE rent_novhcM geometry
## 393 137 122 POINT (-84.34325 34.0156)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.31338 ymin: 33.99924 xmax: -84.31338 ymax: 33.99924
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 394 13121011436 Census Tract 114.36 Fulton County Georgia 126533 21900 3021
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 394 576 2190 613 446 495 1102 103 0 14
## rent_novhcE rent_novhcM geometry
## 394 0 14 POINT (-84.31338 33.99924)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.28068 ymin: 34.0007 xmax: -84.28068 ymax: 34.0007
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 399 13121011432 Census Tract 114.32 Fulton County Georgia 64320 8013 4002
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 399 543 1839 474 1320 334 1637 165 32 62
## rent_novhcE rent_novhcM geometry
## 399 47 56 POINT (-84.28068 34.0007)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.28098 ymin: 33.98536 xmax: -84.28098 ymax: 33.98536
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 401 13121011439 Census Tract 114.39 Fulton County Georgia 114628 35007 4269
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 401 700 3831 674 105 162 1546 197 40 46
## rent_novhcE rent_novhcM geometry
## 401 34 62 POINT (-84.28098 33.98536)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.3725 ymin: 33.96594 xmax: -84.3725 ymax: 33.96594
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 403 13121010213 Census Tract 102.13 Fulton County Georgia 62965 2788 960
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 403 259 334 170 483 165 572 63 0 14
## rent_novhcE rent_novhcM geometry
## 403 130 81 POINT (-84.3725 33.96594)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.35913 ymin: 33.92313 xmax: -84.35913 ymax: 33.92313
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 404 13121010133 Census Tract 101.33 Fulton County Georgia 77406 19750 4883
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 404 678 3414 684 994 456 2336 328 34 54
## rent_novhcE rent_novhcM geometry
## 404 354 149 POINT (-84.35913 33.92313)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.3738 ymin: 33.89524 xmax: -84.3738 ymax: 33.89524
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 409 13121010137 Census Tract 101.37 Fulton County Georgia 69349 9023 3621
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 409 593 2555 548 618 316 1768 343 0 14
## rent_novhcE rent_novhcM geometry
## 409 128 103 POINT (-84.3738 33.89524)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.37276 ymin: 33.87156 xmax: -84.37276 ymax: 33.87156
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 410 13121010004 Census Tract 100.04 Fulton County Georgia 250001 NA 2385
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 410 1007 1550 435 276 216 758 242 0 14
## rent_novhcE rent_novhcM geometry
## 410 0 14 POINT (-84.37276 33.87156)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.39129 ymin: 33.76811 xmax: -84.39129 ymax: 33.76811
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 411 13121001901 Census Tract 19.01 Fulton County Georgia 25378 1325 3427
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 411 519 1467 347 905 276 173 61 0 14
## rent_novhcE rent_novhcM geometry
## 411 30 49 POINT (-84.39129 33.76811)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.37867 ymin: 33.76433 xmax: -84.37867 ymax: 33.76433
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 412 13121001802 Census Tract 18.02 Fulton County Georgia 64803 25524 2219
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 412 250 1095 183 794 304 1547 135 43 37
## rent_novhcE rent_novhcM geometry
## 412 214 107 POINT (-84.37867 33.76433)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.29917 ymin: 33.72476 xmax: -84.29917 ymax: 33.72476
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 413 13089023602 Census Tract 236.02 DeKalb County Georgia 45333 8737 1977
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 413 305 186 73 1753 318 710 95 21 16
## rent_novhcE rent_novhcM geometry
## 413 51 33 POINT (-84.29917 33.72476)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.28953 ymin: 33.90717 xmax: -84.28953 ymax: 33.90717
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 414 13089021301 Census Tract 213.01 DeKalb County Georgia 54079 10764 3673
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 414 573 1369 386 919 325 1634 200 0 14
## rent_novhcE rent_novhcM geometry
## 414 94 73 POINT (-84.28953 33.90717)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.3408 ymin: 33.81769 xmax: -84.3408 ymax: 33.81769
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 415 13089021502 Census Tract 215.02 DeKalb County Georgia 77996 16085 4157
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 415 462 2879 410 686 273 2253 217 13 20
## rent_novhcE rent_novhcM geometry
## 415 40 46 POINT (-84.3408 33.81769)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.34426 ymin: 33.79881 xmax: -84.34426 ymax: 33.79881
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 416 13089020100 Census Tract 201 DeKalb County Georgia 168315 19063 2063
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 416 357 1938 363 37 29 713 69 0 14
## rent_novhcE rent_novhcM geometry
## 416 13 17 POINT (-84.34426 33.79881)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.27781 ymin: 33.58933 xmax: -84.27781 ymax: 33.58933
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 417 13063040420 Census Tract 404.20 Clayton County Georgia 58009 12264 7586
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 417 1203 1496 871 3300 1195 2412 372 0 20
## rent_novhcE rent_novhcM geometry
## 417 0 20 POINT (-84.27781 33.58933)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.28415 ymin: 33.94847 xmax: -84.28415 ymax: 33.94847
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 419 13089021211 Census Tract 212.11 DeKalb County Georgia 109375 19249 4825
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 419 521 3784 554 301 165 1929 142 7 11
## rent_novhcE rent_novhcM geometry
## 419 0 14 POINT (-84.28415 33.94847)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.23752 ymin: 33.88792 xmax: -84.23752 ymax: 33.88792
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 420 13089021812 Census Tract 218.12 DeKalb County Georgia 66713 10027 2633
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 420 596 1280 172 643 406 981 120 22 26
## rent_novhcE rent_novhcM geometry
## 420 50 72 POINT (-84.23752 33.88792)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.2044 ymin: 33.72068 xmax: -84.2044 ymax: 33.72068
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 421 13089023213 Census Tract 232.13 DeKalb County Georgia 44583 13787 7099
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 421 945 246 137 6418 905 2216 203 24 35
## rent_novhcE rent_novhcM geometry
## 421 215 119 POINT (-84.2044 33.72068)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.33324 ymin: 33.839 xmax: -84.33324 ymax: 33.839
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 422 13089021417 Census Tract 214.17 DeKalb County Georgia 64815 10786 5394
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 422 603 2629 619 736 160 2114 250 0 20
## rent_novhcE rent_novhcM geometry
## 422 254 118 POINT (-84.33324 33.839)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.29582 ymin: 33.86097 xmax: -84.29582 ymax: 33.86097
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 424 13089021409 Census Tract 214.09 DeKalb County Georgia 68578 26391 3986
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 424 1030 1914 489 1462 823 1406 373 0 14
## rent_novhcE rent_novhcM geometry
## 424 113 83 POINT (-84.29582 33.86097)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.292 ymin: 33.67242 xmax: -84.292 ymax: 33.67242
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 425 13089023424 Census Tract 234.24 DeKalb County Georgia 61875 10354 5024
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 425 694 290 269 4660 734 1691 202 81 79
## rent_novhcE rent_novhcM geometry
## 425 24 29 POINT (-84.292 33.67242)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.38251 ymin: 33.62563 xmax: -84.38251 ymax: 33.62563
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 426 13063040308 Census Tract 403.08 Clayton County Georgia 24552 2602 3941
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 426 618 983 280 2198 511 1644 326 18 24
## rent_novhcE rent_novhcM geometry
## 426 359 178 POINT (-84.38251 33.62563)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.4222 ymin: 33.75007 xmax: -84.4222 ymax: 33.75007
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 427 13121003900 Census Tract 39 Fulton County Georgia 37292 6298 2011
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 427 678 25 29 1936 676 624 122 44 34
## rent_novhcE rent_novhcM geometry
## 427 113 53 POINT (-84.4222 33.75007)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.39299 ymin: 33.73595 xmax: -84.39299 ymax: 33.73595
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 428 13121012000 Census Tract 120 Fulton County Georgia 16104 13142 3482
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 428 801 475 203 2840 771 1655 640 16 17
## rent_novhcE rent_novhcM geometry
## 428 476 174 POINT (-84.39299 33.73595)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.47318 ymin: 33.62804 xmax: -84.47318 ymax: 33.62804
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 430 13121010604 Census Tract 106.04 Fulton County Georgia 22175 16143 2047
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 430 601 109 78 1835 575 1203 475 12 19
## rent_novhcE rent_novhcM geometry
## 430 165 95 POINT (-84.47318 33.62804)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.51546 ymin: 33.74626 xmax: -84.51546 ymax: 33.74626
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 431 13121007806 Census Tract 78.06 Fulton County Georgia 49101 12435 6524
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 431 1002 166 169 6314 1032 2253 346 53 50
## rent_novhcE rent_novhcM geometry
## 431 104 63 POINT (-84.51546 33.74626)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.42724 ymin: 33.68808 xmax: -84.42724 ymax: 33.68808
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 432 13121011100 Census Tract 111 Fulton County Georgia 62297 7398 2333
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 432 318 929 238 1272 319 1184 162 0 14
## rent_novhcE rent_novhcM geometry
## 432 75 38 POINT (-84.42724 33.68808)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.39164 ymin: 33.78113 xmax: -84.39164 ymax: 33.78113
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 433 13121001001 Census Tract 10.01 Fulton County Georgia 84655 28650 3229
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 433 389 1835 320 462 140 1350 298 30 20
## rent_novhcE rent_novhcM geometry
## 433 138 84 POINT (-84.39164 33.78113)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.43697 ymin: 33.72775 xmax: -84.43697 ymax: 33.72775
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 435 13121006100 Census Tract 61 Fulton County Georgia 30540 7521 3745
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 435 645 153 116 3521 654 1373 212 143 74
## rent_novhcE rent_novhcM geometry
## 435 109 62 POINT (-84.43697 33.72775)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.3795 ymin: 33.74092 xmax: -84.3795 ymax: 33.74092
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 436 13121004900 Census Tract 49 Fulton County Georgia 91563 23363 2884
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 436 515 1530 294 1060 339 1134 178 11 15
## rent_novhcE rent_novhcM geometry
## 436 157 95 POINT (-84.3795 33.74092)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.37342 ymin: 34.00473 xmax: -84.37342 ymax: 34.00473
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 437 13121011422 Census Tract 114.22 Fulton County Georgia 99441 13455 3499
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 437 492 2510 484 439 180 1627 278 38 48
## rent_novhcE rent_novhcM geometry
## 437 48 58 POINT (-84.37342 34.00473)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.3023 ymin: 33.97442 xmax: -84.3023 ymax: 33.97442
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 438 13121010107 Census Tract 101.07 Fulton County Georgia 215417 32710 1886
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 438 250 1776 247 26 27 744 99 0 14
## rent_novhcE rent_novhcM geometry
## 438 0 14 POINT (-84.3023 33.97442)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.39172 ymin: 33.75096 xmax: -84.39172 ymax: 33.75096
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 439 13121003500 Census Tract 35 Fulton County Georgia 51474 11336 2468
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 439 451 618 149 1630 391 1111 347 22 20
## rent_novhcE rent_novhcM geometry
## 439 303 264 POINT (-84.39172 33.75096)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.20022 ymin: 34.00524 xmax: -84.20022 ymax: 34.00524
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 440 13121011612 Census Tract 116.12 Fulton County Georgia 159726 26468 3943
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 440 982 2800 906 179 151 1270 184 16 23
## rent_novhcE rent_novhcM geometry
## 440 0 14 POINT (-84.20022 34.00524)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.49119 ymin: 33.68297 xmax: -84.49119 ymax: 33.68297
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 441 13121007705 Census Tract 77.05 Fulton County Georgia 30401 9525 4737
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 441 1054 23 27 4664 1055 2216 512 36 34
## rent_novhcE rent_novhcM geometry
## 441 422 149 POINT (-84.49119 33.68297)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.52736 ymin: 33.57871 xmax: -84.52736 ymax: 33.57871
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 442 13121010525 Census Tract 105.25 Fulton County Georgia 31244 4864 2614
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 442 539 0 14 2586 526 1200 262 0 14
## rent_novhcE rent_novhcM geometry
## 442 112 105 POINT (-84.52736 33.57871)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.483 ymin: 33.77549 xmax: -84.483 ymax: 33.77549
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 443 13121008203 Census Tract 82.03 Fulton County Georgia 30288 20882 2589
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 443 891 113 177 2476 878 1412 486 47 49
## rent_novhcE rent_novhcM geometry
## 443 577 492 POINT (-84.483 33.77549)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.51093 ymin: 33.66545 xmax: -84.51093 ymax: 33.66545
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 446 13121007709 Census Tract 77.09 Fulton County Georgia 84355 24645 4192
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 446 1799 304 343 3574 1939 1498 329 0 14
## rent_novhcE rent_novhcM geometry
## 446 226 162 POINT (-84.51093 33.66545)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.50822 ymin: 33.60281 xmax: -84.50822 ymax: 33.60281
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 447 13121010529 Census Tract 105.29 Fulton County Georgia 53502 10333 5063
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 447 759 183 100 4680 784 2011 314 46 71
## rent_novhcE rent_novhcM geometry
## 447 0 20 POINT (-84.50822 33.60281)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.3528 ymin: 33.83429 xmax: -84.3528 ymax: 33.83429
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 448 13121009411 Census Tract 94.11 Fulton County Georgia 82135 25622 2468
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 448 571 1468 369 433 316 1359 385 25 39
## rent_novhcE rent_novhcM geometry
## 448 0 14 POINT (-84.3528 33.83429)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.37848 ymin: 33.75958 xmax: -84.37848 ymax: 33.75958
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 449 13121002801 Census Tract 28.01 Fulton County Georgia 69340 12201 3909
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 449 533 1475 215 1990 419 975 180 0 14
## rent_novhcE rent_novhcM geometry
## 449 107 63 POINT (-84.37848 33.75958)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.39001 ymin: 33.66935 xmax: -84.39001 ymax: 33.66935
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 451 13121007301 Census Tract 73.01 Fulton County Georgia 40344 11955 4444
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 451 1024 200 190 3663 859 1877 339 34 43
## rent_novhcE rent_novhcM geometry
## 451 199 156 POINT (-84.39001 33.66935)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.35079 ymin: 33.81599 xmax: -84.35079 ymax: 33.81599
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 452 13121009201 Census Tract 92.01 Fulton County Georgia 48750 18315 1899
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 452 286 1263 307 299 129 934 126 0 14
## rent_novhcE rent_novhcM geometry
## 452 144 58 POINT (-84.35079 33.81599)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.24437 ymin: 34.00531 xmax: -84.24437 ymax: 34.00531
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 455 13121011444 Census Tract 114.44 Fulton County Georgia 151923 54350 3481
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 455 644 2429 606 117 162 1518 605 0 14
## rent_novhcE rent_novhcM geometry
## 455 0 14 POINT (-84.24437 34.00531)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.35715 ymin: 33.87394 xmax: -84.35715 ymax: 33.87394
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 457 13121010005 Census Tract 100.05 Fulton County Georgia 250001 NA 2983
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 457 264 2811 250 35 58 1042 133 37 62
## rent_novhcE rent_novhcM geometry
## 457 0 14 POINT (-84.35715 33.87394)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.35458 ymin: 33.8516 xmax: -84.35458 ymax: 33.8516
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 458 13121009607 Census Tract 96.07 Fulton County Georgia 97344 16940 3937
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 458 475 2718 439 834 370 2429 288 74 62
## rent_novhcE rent_novhcM geometry
## 458 264 137 POINT (-84.35458 33.8516)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.45988 ymin: 33.7435 xmax: -84.45988 ymax: 33.7435
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 459 13121008104 Census Tract 81.04 Fulton County Georgia 36983 9881 4016
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 459 932 66 72 3864 915 1593 268 40 34
## rent_novhcE rent_novhcM geometry
## 459 233 113 POINT (-84.45988 33.7435)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.34649 ymin: 33.99011 xmax: -84.34649 ymax: 33.99011
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 461 13121010125 Census Tract 101.25 Fulton County Georgia 74828 18029 3807
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 461 759 1668 561 1170 593 1661 319 17 28
## rent_novhcE rent_novhcM geometry
## 461 161 142 POINT (-84.34649 33.99011)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.23727 ymin: 33.85383 xmax: -84.23727 ymax: 33.85383
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 462 13089021819 Census Tract 218.19 DeKalb County Georgia 110503 25917 2983
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 462 503 2012 500 357 229 1273 230 1 3
## rent_novhcE rent_novhcM geometry
## 462 0 14 POINT (-84.23727 33.85383)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.33378 ymin: 33.91099 xmax: -84.33378 ymax: 33.91099
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 463 13089021219 Census Tract 212.19 DeKalb County Georgia 165750 25842 4522
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 463 559 3992 578 217 174 1596 197 44 47
## rent_novhcE rent_novhcM geometry
## 463 12 11 POINT (-84.33378 33.91099)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.20928 ymin: 33.70098 xmax: -84.20928 ymax: 33.70098
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 465 13089023448 Census Tract 234.48 DeKalb County Georgia 63829 20730 3550
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 465 831 76 68 3336 799 1321 203 21 33
## rent_novhcE rent_novhcM geometry
## 465 213 175 POINT (-84.20928 33.70098)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.26204 ymin: 33.86321 xmax: -84.26204 ymax: 33.86321
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 466 13089021710 Census Tract 217.10 DeKalb County Georgia 138342 30793 2473
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 466 262 1853 280 268 144 1001 84 0 14
## rent_novhcE rent_novhcM geometry
## 466 0 14 POINT (-84.26204 33.86321)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.34341 ymin: 33.86235 xmax: -84.34341 ymax: 33.86235
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 467 13089021104 Census Tract 211.04 DeKalb County Georgia 100446 7662 1923
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 467 362 1382 246 438 338 1137 189 0 14
## rent_novhcE rent_novhcM geometry
## 467 107 84 POINT (-84.34341 33.86235)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.33379 ymin: 33.94034 xmax: -84.33379 ymax: 33.94034
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 468 13089021223 Census Tract 212.23 DeKalb County Georgia 111214 27719 1957
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 468 360 536 159 19 31 760 80 0 14
## rent_novhcE rent_novhcM geometry
## 468 127 82 POINT (-84.33379 33.94034)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.33051 ymin: 33.95927 xmax: -84.33051 ymax: 33.95927
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 469 13089021229 Census Tract 212.29 DeKalb County Georgia 150305 33128 3376
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 469 634 2796 363 19 31 1162 182 0 14
## rent_novhcE rent_novhcM geometry
## 469 0 14 POINT (-84.33051 33.95927)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.18853 ymin: 33.69503 xmax: -84.18853 ymax: 33.69503
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 470 13089023442 Census Tract 234.42 DeKalb County Georgia 71016 20278 2963
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 470 467 63 79 2843 453 1209 157 0 14
## rent_novhcE rent_novhcM geometry
## 470 16 27 POINT (-84.18853 33.69503)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.26225 ymin: 33.69093 xmax: -84.26225 ymax: 33.69093
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 471 13089023439 Census Tract 234.39 DeKalb County Georgia 31006 11127 2301
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 471 415 81 72 2118 408 935 122 34 53
## rent_novhcE rent_novhcM geometry
## 471 244 143 POINT (-84.26225 33.69093)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.31524 ymin: 33.87182 xmax: -84.31524 ymax: 33.87182
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 472 13089021412 Census Tract 214.12 DeKalb County Georgia 116864 49274 3474
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 472 360 2898 386 104 134 1388 160 0 14
## rent_novhcE rent_novhcM geometry
## 472 0 14 POINT (-84.31524 33.87182)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.18166 ymin: 33.82156 xmax: -84.18166 ymax: 33.82156
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 473 13089021913 Census Tract 219.13 DeKalb County Georgia 32500 4909 4215
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 473 641 723 322 3211 578 1926 265 0 14
## rent_novhcE rent_novhcM geometry
## 473 426 184 POINT (-84.18166 33.82156)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.36784 ymin: 33.71029 xmax: -84.36784 ymax: 33.71029
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 474 13121006801 Census Tract 68.01 Fulton County Georgia NA NA 2219
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 474 208 586 116 1449 192 0 14 0 14
## rent_novhcE rent_novhcM geometry
## 474 0 14 POINT (-84.36784 33.71029)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.21406 ymin: 33.77859 xmax: -84.21406 ymax: 33.77859
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 475 13089023219 Census Tract 232.19 DeKalb County Georgia 56616 11072 3916
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 475 983 309 179 3189 941 1077 191 28 49
## rent_novhcE rent_novhcM geometry
## 475 32 36 POINT (-84.21406 33.77859)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.35449 ymin: 33.57952 xmax: -84.35449 ymax: 33.57952
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 477 13063040416 Census Tract 404.16 Clayton County Georgia 60625 13858 3624
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 477 648 912 495 1662 493 921 141 6 11
## rent_novhcE rent_novhcM geometry
## 477 43 51 POINT (-84.35449 33.57952)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.28991 ymin: 33.92838 xmax: -84.28991 ymax: 33.92838
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 478 13089021217 Census Tract 212.17 DeKalb County Georgia 107059 11734 2658
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 478 362 1885 299 443 174 954 101 18 19
## rent_novhcE rent_novhcM geometry
## 478 28 24 POINT (-84.28991 33.92838)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.26562 ymin: 33.6607 xmax: -84.26562 ymax: 33.6607
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 479 13089023422 Census Tract 234.22 DeKalb County Georgia 59798 12067 5945
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 479 715 123 120 5766 717 1789 160 45 31
## rent_novhcE rent_novhcM geometry
## 479 50 57 POINT (-84.26562 33.6607)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.31386 ymin: 33.80856 xmax: -84.31386 ymax: 33.80856
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 480 13089021506 Census Tract 215.06 DeKalb County Georgia 107450 50525 2580
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 480 523 1215 304 537 300 1379 436 57 42
## rent_novhcE rent_novhcM geometry
## 480 38 44 POINT (-84.31386 33.80856)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.2783 ymin: 33.82801 xmax: -84.2783 ymax: 33.82801
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 481 13089021707 Census Tract 217.07 DeKalb County Georgia 111402 23312 2651
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 481 411 2147 369 255 235 1058 259 0 14
## rent_novhcE rent_novhcM geometry
## 481 14 23 POINT (-84.2783 33.82801)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.16221 ymin: 33.80122 xmax: -84.16221 ymax: 33.80122
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 482 13089021914 Census Tract 219.14 DeKalb County Georgia 34818 12565 3389
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 482 693 667 212 2651 744 1500 334 8 12
## rent_novhcE rent_novhcM geometry
## 482 186 122 POINT (-84.16221 33.80122)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.15527 ymin: 33.72499 xmax: -84.15527 ymax: 33.72499
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 483 13089023327 Census Tract 233.27 DeKalb County Georgia 47083 14033 7204
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 483 2217 139 171 7021 2233 2151 306 39 58
## rent_novhcE rent_novhcM geometry
## 483 23 37 POINT (-84.15527 33.72499)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.18561 ymin: 33.67524 xmax: -84.18561 ymax: 33.67524
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 484 13089023441 Census Tract 234.41 DeKalb County Georgia 62542 7682 3214
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 484 644 87 76 2990 635 1179 164 0 14
## rent_novhcE rent_novhcM geometry
## 484 0 14 POINT (-84.18561 33.67524)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.32827 ymin: 33.80982 xmax: -84.32827 ymax: 33.80982
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 489 13089021505 Census Tract 215.05 DeKalb County Georgia 97361 38830 3356
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 489 790 2093 438 466 545 1555 434 0 14
## rent_novhcE rent_novhcM geometry
## 489 52 61 POINT (-84.32827 33.80982)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.30408 ymin: 33.77145 xmax: -84.30408 ymax: 33.77145
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 490 13089022501 Census Tract 225.01 DeKalb County Georgia 82885 22329 4538
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 490 827 2274 447 1556 462 1680 234 22 28
## rent_novhcE rent_novhcM geometry
## 490 272 117 POINT (-84.30408 33.77145)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.30062 ymin: 33.79747 xmax: -84.30062 ymax: 33.79747
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 491 13089022304 Census Tract 223.04 DeKalb County Georgia 57073 22615 2921
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 491 324 1672 268 307 186 1532 175 2 5
## rent_novhcE rent_novhcM geometry
## 491 134 84 POINT (-84.30062 33.79747)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.47639 ymin: 33.59195 xmax: -84.47639 ymax: 33.59195
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 492 13121010508 Census Tract 105.08 Fulton County Georgia 60508 18303 3850
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 492 637 266 201 3408 653 1209 163 75 86
## rent_novhcE rent_novhcM geometry
## 492 7 12 POINT (-84.47639 33.59195)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.42169 ymin: 33.72849 xmax: -84.42169 ymax: 33.72849
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 493 13121006200 Census Tract 62 Fulton County Georgia 52000 47680 2025
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 493 814 101 98 1292 180 640 199 22 24
## rent_novhcE rent_novhcM geometry
## 493 94 44 POINT (-84.42169 33.72849)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.35485 ymin: 33.799 xmax: -84.35485 ymax: 33.799
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 494 13121000100 Census Tract 1 Fulton County Georgia 142092 30235 5505
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 494 845 4890 864 117 108 2233 414 0 20
## rent_novhcE rent_novhcM geometry
## 494 0 20 POINT (-84.35485 33.799)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.35061 ymin: 33.9587 xmax: -84.35061 ymax: 33.9587
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 495 13121010131 Census Tract 101.31 Fulton County Georgia 78026 39495 2594
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 495 966 969 447 915 686 1278 433 0 14
## rent_novhcE rent_novhcM geometry
## 495 41 49 POINT (-84.35061 33.9587)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.39708 ymin: 33.80387 xmax: -84.39708 ymax: 33.80387
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 496 13121009103 Census Tract 91.03 Fulton County Georgia 84000 9818 3382
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 496 558 2026 366 696 388 1938 290 79 100
## rent_novhcE rent_novhcM geometry
## 496 59 55 POINT (-84.39708 33.80387)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.36123 ymin: 33.9771 xmax: -84.36123 ymax: 33.9771
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 498 13121010218 Census Tract 102.18 Fulton County Georgia 57778 30006 1656
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 498 464 1189 665 347 264 942 135 0 14
## rent_novhcE rent_novhcM geometry
## 498 0 14 POINT (-84.36123 33.9771)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.27156 ymin: 34.01239 xmax: -84.27156 ymax: 34.01239
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 500 13121011433 Census Tract 114.33 Fulton County Georgia 144286 52175 2913
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 500 604 2210 650 310 232 1016 245 0 14
## rent_novhcE rent_novhcM geometry
## 500 0 14 POINT (-84.27156 34.01239)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.29379 ymin: 34.01026 xmax: -84.29379 ymax: 34.01026
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 501 13121011442 Census Tract 114.42 Fulton County Georgia 105156 9508 2447
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 501 524 1804 432 509 412 887 113 31 37
## rent_novhcE rent_novhcM geometry
## 501 28 46 POINT (-84.29379 34.01026)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.17663 ymin: 33.79787 xmax: -84.17663 ymax: 33.79787
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 502 13089021906 Census Tract 219.06 DeKalb County Georgia 44316 4213 5824
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 502 953 513 141 4793 885 1870 219 33 44
## rent_novhcE rent_novhcM geometry
## 502 180 96 POINT (-84.17663 33.79787)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.27758 ymin: 33.56956 xmax: -84.27758 ymax: 33.56956
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 504 13063040427 Census Tract 404.27 Clayton County Georgia 54732 12963 4992
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 504 862 1182 566 3358 702 1735 241 77 87
## rent_novhcE rent_novhcM geometry
## 504 97 119 POINT (-84.27758 33.56956)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.27391 ymin: 33.84462 xmax: -84.27391 ymax: 33.84462
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 506 13089021703 Census Tract 217.03 DeKalb County Georgia 155156 17775 4576
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 506 728 3698 663 556 394 1716 177 10 15
## rent_novhcE rent_novhcM geometry
## 506 27 33 POINT (-84.27391 33.84462)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.27828 ymin: 33.75958 xmax: -84.27828 ymax: 33.75958
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 507 13089022900 Census Tract 229 DeKalb County Georgia 89844 25996 3777
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 507 435 2784 428 826 192 1751 226 38 47
## rent_novhcE rent_novhcM geometry
## 507 81 54 POINT (-84.27828 33.75958)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.26912 ymin: 33.73506 xmax: -84.26912 ymax: 33.73506
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 508 13089023501 Census Tract 235.01 DeKalb County Georgia 34032 3422 4115
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 508 927 240 138 3632 887 1541 332 48 34
## rent_novhcE rent_novhcM geometry
## 508 144 66 POINT (-84.26912 33.73506)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.41202 ymin: 33.75082 xmax: -84.41202 ymax: 33.75082
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 509 13121003800 Census Tract 38 Fulton County Georgia 20952 11606 4377
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 509 700 916 279 2647 587 246 77 0 14
## rent_novhcE rent_novhcM geometry
## 509 98 51 POINT (-84.41202 33.75082)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.51027 ymin: 33.78073 xmax: -84.51027 ymax: 33.78073
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 512 13121008202 Census Tract 82.02 Fulton County Georgia 16442 14994 2550
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 512 600 106 84 2434 611 883 241 80 62
## rent_novhcE rent_novhcM geometry
## 512 222 210 POINT (-84.51027 33.78073)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.41015 ymin: 33.71425 xmax: -84.41015 ymax: 33.71425
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 513 13121006500 Census Tract 65 Fulton County Georgia 53409 24991 3871
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 513 610 924 345 2796 578 1622 361 37 26
## rent_novhcE rent_novhcM geometry
## 513 149 72 POINT (-84.41015 33.71425)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.39727 ymin: 33.82931 xmax: -84.39727 ymax: 33.82931
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 514 13121009501 Census Tract 95.01 Fulton County Georgia 175769 62965 3402
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 514 390 3314 387 41 44 1662 175 60 50
## rent_novhcE rent_novhcM geometry
## 514 0 14 POINT (-84.39727 33.82931)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.37293 ymin: 33.58452 xmax: -84.37293 ymax: 33.58452
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 515 13063040414 Census Tract 404.14 Clayton County Georgia 49432 10396 1829
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 515 351 543 191 771 229 570 74 9 10
## rent_novhcE rent_novhcM geometry
## 515 17 20 POINT (-84.37293 33.58452)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.31979 ymin: 33.6736 xmax: -84.31979 ymax: 33.6736
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 517 13089023444 Census Tract 234.44 DeKalb County Georgia 81654 23433 2150
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 517 499 257 292 1680 484 755 192 0 14
## rent_novhcE rent_novhcM geometry
## 517 0 14 POINT (-84.31979 33.6736)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.25653 ymin: 33.70997 xmax: -84.25653 ymax: 33.70997
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 518 13089023446 Census Tract 234.46 DeKalb County Georgia 36522 4388 1768
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 518 507 28 37 1722 509 677 210 0 14
## rent_novhcE rent_novhcM geometry
## 518 77 84 POINT (-84.25653 33.70997)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.421 ymin: 33.79661 xmax: -84.421 ymax: 33.79661
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 519 13121008905 Census Tract 89.05 Fulton County Georgia 98681 18254 4976
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 519 953 2940 684 1652 696 2877 441 0 14
## rent_novhcE rent_novhcM geometry
## 519 32 49 POINT (-84.421 33.79661)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.52134 ymin: 33.56946 xmax: -84.52134 ymax: 33.56946
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 520 13121010533 Census Tract 105.33 Fulton County Georgia 51518 25717 1803
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 520 640 136 142 1667 684 938 213 0 14
## rent_novhcE rent_novhcM geometry
## 520 0 14 POINT (-84.52134 33.56946)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.53689 ymin: 33.59406 xmax: -84.53689 ymax: 33.59406
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 525 13121010523 Census Tract 105.23 Fulton County Georgia 44479 6400 1103
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 525 321 95 77 795 300 449 100 19 31
## rent_novhcE rent_novhcM geometry
## 525 23 26 POINT (-84.53689 33.59406)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.48178 ymin: 33.70989 xmax: -84.48178 ymax: 33.70989
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 526 13121007708 Census Tract 77.08 Fulton County Georgia 57258 28500 3574
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 526 930 35 44 3518 937 1468 502 25 40
## rent_novhcE rent_novhcM geometry
## 526 330 139 POINT (-84.48178 33.70989)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.47131 ymin: 33.68747 xmax: -84.47131 ymax: 33.68747
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 527 13121011301 Census Tract 113.01 Fulton County Georgia 55337 13287 4806
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 527 676 595 266 4039 606 1714 273 65 59
## rent_novhcE rent_novhcM geometry
## 527 6 10 POINT (-84.47131 33.68747)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.35289 ymin: 33.75186 xmax: -84.35289 ymax: 33.75186
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 528 13121003100 Census Tract 31 Fulton County Georgia 82309 39452 2290
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 528 397 1324 243 900 361 1251 332 10 14
## rent_novhcE rent_novhcM geometry
## 528 311 293 POINT (-84.35289 33.75186)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.34607 ymin: 33.97569 xmax: -84.34607 ymax: 33.97569
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 529 13121010135 Census Tract 101.35 Fulton County Georgia 60077 27324 2778
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 529 459 1345 384 1008 388 1019 149 0 14
## rent_novhcE rent_novhcM geometry
## 529 167 155 POINT (-84.34607 33.97569)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.46619 ymin: 33.78144 xmax: -84.46619 ymax: 33.78144
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 530 13121008601 Census Tract 86.01 Fulton County Georgia 19344 3755 5154
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 530 1214 87 71 5065 1231 1921 429 52 43
## rent_novhcE rent_novhcM geometry
## 530 808 359 POINT (-84.46619 33.78144)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.24061 ymin: 33.65917 xmax: -84.24061 ymax: 33.65917
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 532 13089023436 Census Tract 234.36 DeKalb County Georgia 65104 11133 3326
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 532 412 132 131 3136 424 1062 109 0 14
## rent_novhcE rent_novhcM geometry
## 532 0 14 POINT (-84.24061 33.65917)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.31025 ymin: 33.62812 xmax: -84.31025 ymax: 33.62812
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 534 13063040410 Census Tract 404.10 Clayton County Georgia 47633 20429 8150
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 534 2010 1270 783 5024 1927 2841 538 100 78
## rent_novhcE rent_novhcM geometry
## 534 90 112 POINT (-84.31025 33.62812)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.38525 ymin: 33.77439 xmax: -84.38525 ymax: 33.77439
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 536 13121001205 Census Tract 12.05 Fulton County Georgia 73005 20204 1690
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 536 256 1167 277 213 134 1279 142 0 14
## rent_novhcE rent_novhcM geometry
## 536 174 84 POINT (-84.38525 33.77439)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.29715 ymin: 34.01877 xmax: -84.29715 ymax: 34.01877
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 538 13121011441 Census Tract 114.41 Fulton County Georgia 106892 29813 4085
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 538 1095 3593 773 118 110 1468 219 0 14
## rent_novhcE rent_novhcM geometry
## 538 0 14 POINT (-84.29715 34.01877)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.36727 ymin: 33.905 xmax: -84.36727 ymax: 33.905
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 539 13121010129 Census Tract 101.29 Fulton County Georgia 80679 11814 4354
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 539 1099 2769 1022 991 505 2296 417 0 14
## rent_novhcE rent_novhcM geometry
## 539 124 115 POINT (-84.36727 33.905)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.35407 ymin: 33.77907 xmax: -84.35407 ymax: 33.77907
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 540 13121001502 Census Tract 15.02 Fulton County Georgia 68776 18589 2040
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 540 468 1724 351 37 71 1008 155 0 14
## rent_novhcE rent_novhcM geometry
## 540 23 37 POINT (-84.35407 33.77907)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.42624 ymin: 33.8954 xmax: -84.42624 ymax: 33.8954
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 541 13121010223 Census Tract 102.23 Fulton County Georgia 196528 71384 3223
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 541 682 2775 699 199 132 1237 156 9 15
## rent_novhcE rent_novhcM geometry
## 541 0 14 POINT (-84.42624 33.8954)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.29961 ymin: 33.99107 xmax: -84.29961 ymax: 33.99107
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 543 13121011440 Census Tract 114.40 Fulton County Georgia 123155 45510 2343
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 543 349 1657 255 446 280 883 97 0 14
## rent_novhcE rent_novhcM geometry
## 543 0 14 POINT (-84.29961 33.99107)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.24019 ymin: 33.72673 xmax: -84.24019 ymax: 33.72673
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 544 13089023506 Census Tract 235.06 DeKalb County Georgia 50173 5966 7363
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 544 1636 505 198 6547 1551 2159 387 31 50
## rent_novhcE rent_novhcM geometry
## 544 175 116 POINT (-84.24019 33.72673)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.5373 ymin: 33.70941 xmax: -84.5373 ymax: 33.70941
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 545 13121007809 Census Tract 78.09 Fulton County Georgia 52191 12726 4736
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 545 783 29 42 4563 830 1770 323 29 36
## rent_novhcE rent_novhcM geometry
## 545 186 286 POINT (-84.5373 33.70941)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.54485 ymin: 33.6408 xmax: -84.54485 ymax: 33.6408
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 546 13121010307 Census Tract 103.07 Fulton County Georgia 81194 14277 5027
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 546 995 83 135 4886 968 1791 364 0 20
## rent_novhcE rent_novhcM geometry
## 546 0 20 POINT (-84.54485 33.6408)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.41661 ymin: 33.83126 xmax: -84.41661 ymax: 33.83126
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 547 13121009804 Census Tract 98.04 Fulton County Georgia 250001 NA 2499
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 547 643 2197 668 254 312 794 144 0 14
## rent_novhcE rent_novhcM geometry
## 547 0 14 POINT (-84.41661 33.83126)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.37344 ymin: 33.67397 xmax: -84.37344 ymax: 33.67397
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 550 13121007302 Census Tract 73.02 Fulton County Georgia 19118 16820 3216
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 550 530 72 76 2897 617 1226 359 70 94
## rent_novhcE rent_novhcM geometry
## 550 405 370 POINT (-84.37344 33.67397)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.48224 ymin: 33.7664 xmax: -84.48224 ymax: 33.7664
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 551 13121008204 Census Tract 82.04 Fulton County Georgia 42414 9786 3202
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 551 818 17 28 3100 804 1328 245 57 54
## rent_novhcE rent_novhcM geometry
## 551 221 121 POINT (-84.48224 33.7664)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.3293 ymin: 33.86677 xmax: -84.3293 ymax: 33.86677
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 552 13089021411 Census Tract 214.11 DeKalb County Georgia 121861 21461 4018
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 552 768 3363 760 292 171 1956 303 8 14
## rent_novhcE rent_novhcM geometry
## 552 32 30 POINT (-84.3293 33.86677)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.29605 ymin: 33.81632 xmax: -84.29605 ymax: 33.81632
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 553 13089021602 Census Tract 216.02 DeKalb County Georgia 96473 27743 3457
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 553 364 2994 378 175 131 1806 189 0 14
## rent_novhcE rent_novhcM geometry
## 553 97 109 POINT (-84.29605 33.81632)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.27263 ymin: 33.74337 xmax: -84.27263 ymax: 33.74337
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 554 13089023101 Census Tract 231.01 DeKalb County Georgia 58889 8614 4600
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 554 696 1129 337 3277 610 1732 195 18 25
## rent_novhcE rent_novhcM geometry
## 554 137 81 POINT (-84.27263 33.74337)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.40915 ymin: 33.74529 xmax: -84.40915 ymax: 33.74529
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 556 13121004300 Census Tract 43 Fulton County Georgia 61066 35030 2703
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 556 385 510 143 1950 404 615 132 13 15
## rent_novhcE rent_novhcM geometry
## 556 155 83 POINT (-84.40915 33.74529)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.34274 ymin: 33.92883 xmax: -84.34274 ymax: 33.92883
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 558 13089021230 Census Tract 212.30 DeKalb County Georgia 100526 6083 3791
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 558 568 1158 278 331 187 1810 276 12 20
## rent_novhcE rent_novhcM geometry
## 558 168 96 POINT (-84.34274 33.92883)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.31433 ymin: 33.82653 xmax: -84.31433 ymax: 33.82653
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 559 13089021606 Census Tract 216.06 DeKalb County Georgia 69865 9406 3918
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 559 1150 2982 1101 711 421 1496 245 0 14
## rent_novhcE rent_novhcM geometry
## 559 128 72 POINT (-84.31433 33.82653)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.32186 ymin: 33.85357 xmax: -84.32186 ymax: 33.85357
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 560 13089021421 Census Tract 214.21 DeKalb County Georgia 72847 45070 2546
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 560 461 1732 532 367 265 717 114 0 14
## rent_novhcE rent_novhcM geometry
## 560 72 50 POINT (-84.32186 33.85357)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.32164 ymin: 33.73822 xmax: -84.32164 ymax: 33.73822
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 561 13089023701 Census Tract 237.01 DeKalb County Georgia 45238 27154 2595
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 561 903 640 148 1847 881 1104 367 230 328
## rent_novhcE rent_novhcM geometry
## 561 20 25 POINT (-84.32164 33.73822)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.30787 ymin: 33.65979 xmax: -84.30787 ymax: 33.65979
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 562 13089023443 Census Tract 234.43 DeKalb County Georgia 84671 10034 5951
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 562 1460 126 80 5538 1427 2014 306 44 51
## rent_novhcE rent_novhcM geometry
## 562 0 20 POINT (-84.30787 33.65979)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.18779 ymin: 33.84961 xmax: -84.18779 ymax: 33.84961
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 563 13089021823 Census Tract 218.23 DeKalb County Georgia 86846 16047 4200
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 563 729 2103 542 1577 521 1616 288 0 14
## rent_novhcE rent_novhcM geometry
## 563 24 39 POINT (-84.18779 33.84961)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.31772 ymin: 33.89086 xmax: -84.31772 ymax: 33.89086
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 564 13089021222 Census Tract 212.22 DeKalb County Georgia 73544 31338 4847
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 564 1114 3251 391 1152 1073 2466 441 0 14
## rent_novhcE rent_novhcM geometry
## 564 400 395 POINT (-84.31772 33.89086)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.46518 ymin: 33.60823 xmax: -84.46518 ymax: 33.60823
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 566 13121010521 Census Tract 105.21 Fulton County Georgia 47778 13458 1736
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 566 492 111 151 1610 478 572 155 16 26
## rent_novhcE rent_novhcM geometry
## 566 51 57 POINT (-84.46518 33.60823)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.32117 ymin: 34.01155 xmax: -84.32117 ymax: 34.01155
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 567 13121011435 Census Tract 114.35 Fulton County Georgia 64922 15402 3807
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 567 500 2931 465 709 422 1677 167 38 37
## rent_novhcE rent_novhcM geometry
## 567 97 66 POINT (-84.32117 34.01155)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.38604 ymin: 33.84379 xmax: -84.38604 ymax: 33.84379
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 568 13121009504 Census Tract 95.04 Fulton County Georgia 91886 29383 2271
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 568 399 1554 406 457 437 1248 198 21 37
## rent_novhcE rent_novhcM geometry
## 568 50 80 POINT (-84.38604 33.84379)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.42513 ymin: 33.866 xmax: -84.42513 ymax: 33.866
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 570 13121009802 Census Tract 98.02 Fulton County Georgia 152750 34729 4087
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 570 427 3322 437 367 193 1755 197 0 14
## rent_novhcE rent_novhcM geometry
## 570 107 86 POINT (-84.42513 33.866)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.41014 ymin: 33.74894 xmax: -84.41014 ymax: 33.74894
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 571 13121003700 Census Tract 37 Fulton County Georgia 36288 23262 176
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 571 76 0 14 155 74 146 61 0 14
## rent_novhcE rent_novhcM geometry
## 571 35 39 POINT (-84.41014 33.74894)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.35107 ymin: 33.62656 xmax: -84.35107 ymax: 33.62656
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 572 13063040310 Census Tract 403.10 Clayton County Georgia 42983 19424 3903
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 572 1002 1524 905 1808 530 1389 254 73 89
## rent_novhcE rent_novhcM geometry
## 572 150 120 POINT (-84.35107 33.62656)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.18245 ymin: 33.77314 xmax: -84.18245 ymax: 33.77314
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 573 13089023221 Census Tract 232.21 DeKalb County Georgia 50467 8424 2958
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 573 1069 194 157 2008 819 1063 223 0 14
## rent_novhcE rent_novhcM geometry
## 573 25 40 POINT (-84.18245 33.77314)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.42239 ymin: 33.71145 xmax: -84.42239 ymax: 33.71145
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 574 13121006601 Census Tract 66.01 Fulton County Georgia 49432 17196 1658
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 574 255 383 128 1180 255 673 90 36 25
## rent_novhcE rent_novhcM geometry
## 574 112 53 POINT (-84.42239 33.71145)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.29824 ymin: 33.73523 xmax: -84.29824 ymax: 33.73523
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 575 13089023601 Census Tract 236.01 DeKalb County Georgia 73287 15854 2875
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 575 752 863 259 1856 666 1128 116 9 10
## rent_novhcE rent_novhcM geometry
## 575 34 41 POINT (-84.29824 33.73523)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.23857 ymin: 33.90118 xmax: -84.23857 ymax: 33.90118
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 576 13089021813 Census Tract 218.13 DeKalb County Georgia 45725 3653 2286
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 576 268 629 161 1403 297 1003 88 0 14
## rent_novhcE rent_novhcM geometry
## 576 89 66 POINT (-84.23857 33.90118)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.40206 ymin: 33.66349 xmax: -84.40206 ymax: 33.66349
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 577 13121010802 Census Tract 108.02 Fulton County Georgia 70721 28332 4213
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 577 650 1429 569 1456 853 1524 272 17 28
## rent_novhcE rent_novhcM geometry
## 577 156 98 POINT (-84.40206 33.66349)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.4186 ymin: 33.76721 xmax: -84.4186 ymax: 33.76721
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 578 13121002300 Census Tract 23 Fulton County Georgia 28611 16783 1384
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 578 322 63 70 1293 323 596 151 52 40
## rent_novhcE rent_novhcM geometry
## 578 208 110 POINT (-84.4186 33.76721)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.3889 ymin: 33.80638 xmax: -84.3889 ymax: 33.80638
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 579 13121009105 Census Tract 91.05 Fulton County Georgia 217961 102240 1290
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 579 288 1150 268 0 14 463 92 0 14
## rent_novhcE rent_novhcM geometry
## 579 0 14 POINT (-84.3889 33.80638)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.38546 ymin: 33.75423 xmax: -84.38546 ymax: 33.75423
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 581 13121011901 Census Tract 119.01 Fulton County Georgia NA NA 2322
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 581 578 733 252 1437 408 1074 231 81 50
## rent_novhcE rent_novhcM geometry
## 581 265 118 POINT (-84.38546 33.75423)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.50737 ymin: 33.68257 xmax: -84.50737 ymax: 33.68257
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 586 13121007711 Census Tract 77.11 Fulton County Georgia 46000 31952 3040
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 586 1333 33 55 3007 1338 1206 253 0 14
## rent_novhcE rent_novhcM geometry
## 586 289 167 POINT (-84.50737 33.68257)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.38424 ymin: 33.81107 xmax: -84.38424 ymax: 33.81107
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 587 13121009106 Census Tract 91.06 Fulton County Georgia 63320 32472 2114
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 587 527 973 424 416 142 1240 217 33 55
## rent_novhcE rent_novhcM geometry
## 587 239 137 POINT (-84.38424 33.81107)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.48875 ymin: 33.79306 xmax: -84.48875 ymax: 33.79306
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 589 13121008602 Census Tract 86.02 Fulton County Georgia 35804 8001 1572
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 589 295 87 72 1404 275 565 77 29 49
## rent_novhcE rent_novhcM geometry
## 589 138 74 POINT (-84.48875 33.79306)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.21059 ymin: 33.75618 xmax: -84.21059 ymax: 33.75618
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 592 13089023215 Census Tract 232.15 DeKalb County Georgia 43457 7499 4882
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 592 1048 460 204 3717 1006 1553 304 192 249
## rent_novhcE rent_novhcM geometry
## 592 48 66 POINT (-84.21059 33.75618)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.44383 ymin: 33.81725 xmax: -84.44383 ymax: 33.81725
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 594 13121008903 Census Tract 89.03 Fulton County Georgia 79957 2383 2643
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 594 474 825 283 1020 278 1084 218 3 5
## rent_novhcE rent_novhcM geometry
## 594 78 81 POINT (-84.44383 33.81725)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.38877 ymin: 33.69127 xmax: -84.38877 ymax: 33.69127
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 596 13121007001 Census Tract 70.01 Fulton County Georgia 30323 4040 4243
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 596 762 141 93 3713 750 1441 242 57 52
## rent_novhcE rent_novhcM geometry
## 596 248 168 POINT (-84.38877 33.69127)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.36932 ymin: 33.75802 xmax: -84.36932 ymax: 33.75802
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 597 13121002900 Census Tract 29 Fulton County Georgia 82727 22691 2232
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 597 273 1224 185 763 223 1198 148 59 48
## rent_novhcE rent_novhcM geometry
## 597 107 76 POINT (-84.36932 33.75802)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.387 ymin: 33.90142 xmax: -84.387 ymax: 33.90142
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 598 13121010212 Census Tract 102.12 Fulton County Georgia 67639 22679 5953
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 598 998 3854 928 192 115 2193 458 18 15
## rent_novhcE rent_novhcM geometry
## 598 97 71 POINT (-84.387 33.90142)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
## Simple feature collection with 1 feature and 18 fields
## Geometry type: POINT
## Dimension: XY
## Bounding box: xmin: -84.40389 ymin: 33.73216 xmax: -84.40389 ymax: 33.73216
## Geodetic CRS: WGS 84
## GEOID tract county state hhincE hhincM r_totE
## 599 13121005700 Census Tract 57 Fulton County Georgia 31500 8941 1400
## r_totM r_whE r_whM r_blE r_blM tot_hhE tot_hhM own_novhcE own_novhcM
## 599 366 26 22 1319 350 602 121 6 10
## rent_novhcE rent_novhcM geometry
## 599 149 54 POINT (-84.40389 33.73216)
## Warning in shortest_paths(x, from, to, weights = weights, output = "both", : At
## core/paths/dijkstra.c:442 : Couldn't reach some vertices.
# Cbind the calculated travel time back to `home`
home_done <- home %>%
cbind(trvt = total_trvt)
# Map!
tmap_mode('view')
## tmap mode set to interactive viewing
tm_shape(census %>% mutate(pct_white = r_whE/r_totE)) +
tm_polygons(col = "pct_white") +
tm_shape(home_done) +
tm_dots(col = "trvt")
# ggplot!
inc <- ggplot(data = home_done %>%
mutate(pct_white = r_whE/r_totE,
hhinc = hhincE),
aes(x = hhinc, y = trvt)) +
geom_point() +
geom_smooth(method = "lm", se = FALSE) +
labs(x = "Median Annual Household Income",
y = "Travel Time from Home to Midtown Station") +
theme_bw()
wh <- ggplot(data = home_done %>%
mutate(pct_white = r_whE/r_totE,
hhinc = pct_white),
aes(x = pct_white, y = trvt)) +
geom_point() +
geom_smooth(method = "lm", se = FALSE) +
labs(x = "Percent White",
y = "Travel Time from Home to Midtown Station") +
theme_bw()
ggpubr::ggarrange(inc, wh)
## `geom_smooth()` using formula 'y ~ x'
## Warning: Removed 9 rows containing non-finite values (stat_smooth).
## Warning: Removed 9 rows containing missing values (geom_point).
## `geom_smooth()` using formula 'y ~ x'
## Warning: Removed 3 rows containing non-finite values (stat_smooth).
## Warning: Removed 3 rows containing missing values (geom_point).
The scatterplots show that as the percent white and median household income increase the travel times to Midtown Station tend to decrease. This is also somewhat depicted in the map where darker census tracts representing high percent of white population near MARTA Rail stops generally have lower travel times represented by lighter dots. The only thing the map clearly depicts is that the farther north you go the percent of white population increases and that the farther south and east you go the travel times increase. Generally the shortest travel times represented by light yellow dots (0-10) seem to be clustered around Midtown, North Ave, and Arts Center stations. This makes sense as this stretch has several major corporations, higher density residential, and that all three stops are served by both the Red and Gold Lines during commute times.