Shapefile for Comprehensive Example not working correctly on Shiny site
WayneBetws opened this issue · 2 comments
WayneBetws commented
andrejadd commented
Plotting the shape lines triggers this bug. I replaced
plot(shape_data[[i]], add = TRUE, col = "lightblue", max.plot = 1)
with
plot(st_geometry(shape_data[[i]]), add = TRUE, max.plot = 1, col = "lightblue")
st_geometry transforms the shape data.
Confirm that the shape lines are correct (not overly stretched to the right and top)...
andrejadd commented