-
Notifications
You must be signed in to change notification settings - Fork 299
Description
Reprojection of the small scale Natural Earth coastline dataset to a Robinson projection returns an erroneous line feature on the plot. Apologies if this is the wrong place to report, it might be an issue with the projection library?
Medium-scale coastlines reproject okay to a World Robinson projection (EPSG:54030)
coastlines <- ne_coastline(scale = "medium", returnclass = "sf")
ggplot(data = coastlines) + geom_sf(colour = "black") + coord_sf(crs = st_crs(54030)) + theme_bw()
Medium-scale coastlines reproject okay to a World Robinson projection (EPSG:54030)
coastlines <- ne_coastline(scale = "medium", returnclass = "sf")
ggplot(data = coastlines) + geom_sf(colour = "black") + coord_sf(crs = st_crs(54030)) + theme_bw()

Small-scale coastlines display okay at the default projection
coastlines <- ne_coastline(scale = "small", returnclass = "sf")
ggplot(data = coastlines) + geom_sf(colour = "black") + theme_bw()

Small-scale coastlines reprojected to the World Robinson projection (EPSG:54030) include the erroneous line feature at ca. 70 degrees north
coastlines <- ne_coastline(scale = "small", returnclass = "sf")
ggplot(data = coastlines) + geom_sf(colour = "black") + coord_sf(crs = st_crs(54030)) + theme_bw()
