Thank you so much for the help earlier, I have a follow-up question. That method seems to work great except for instance where there is only a single character string. When that happens I am returning an error that the object isn't found in my directory. Have you dealt with this before?
REPREX
json_data <- jsonlite::read_json(path = "https://gitlab.com/Bryanrt-geophys/ml-seismic-application/-/raw/master/spyder/EQTransformer_test/project/json/station_list.json",simplifyVector = T)
stations <- names(json_data)
network_data <- map2(json_data, stations, function(x, y){
x[-2] %>%
unlist() %>%
paste0(collapse = " ") %>%
readr::read_delim(delim=" ",
col_names = c("network_code",
"reciever_latitude",
"reciever_longitude",
"reciever_elevation_m")) %>%
mutate(
across(c(reciever_latitude, reciever_longitude, reciever_elevation_m),as.integer),
station = y)
})