Skip to content

Commit

Permalink
Fix NA reading in IPC data
Browse files Browse the repository at this point in the history
  • Loading branch information
caldwellst committed Apr 16, 2024
1 parent 7ad246e commit af9e5a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/ipc_get.R
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ ipc_get <- function(
)

if (return_format == "csv") {
return(readr::read_csv(ret, show_col_types = FALSE))
return(readr::read_csv(ret, show_col_types = FALSE, na = ""))
} else if (return_format == "geojson") {
return(sf::st_read(ret, quiet = TRUE))
} else if (return_format == "json") {
Expand Down

0 comments on commit af9e5a2

Please sign in to comment.