# original dataseine |>ggplot() +geom_sf(aes(color = name)) +labs(title ="La Seine",subtitle ="Rivers in France",caption ="GeoComputation with R book club") +theme_minimal()
seine_simp_1000 =st_simplify(seine, dTolerance =1000) #1000 metersseine_simp_1000 |>ggplot() +geom_sf() +labs(title ="La Seine",subtitle ="resolution: 1000 meters",caption ="GeoComputation with R book club") +theme_minimal()