Read region offsets from CSV
Examples
path <- tempfile(fileext = ".csv")
writeLines(c("region,dx_m,dy_m", "North,1000,-500", "South,0,0"), path)
read_offsets(path)
#> region dx_m dy_m
#> 1 North 1000 -500
#> 2 South 0 0
Read region offsets from CSV
path <- tempfile(fileext = ".csv")
writeLines(c("region,dx_m,dy_m", "North,1000,-500", "South,0,0"), path)
read_offsets(path)
#> region dx_m dy_m
#> 1 North 1000 -500
#> 2 South 0 0