Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# ggplot2 (development version)

* geom_sf now accepts shape names (@sierrajohnson, #5808)
* Missing values from discrete palettes are no longer translated
(@teunbrand, #5929).
* Fixed bug in `facet_grid(margins = TRUE)` when using expresssions
Expand Down
3 changes: 3 additions & 0 deletions R/geom-sf.R
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,9 @@ GeomSf <- ggproto("GeomSf", Geom,
if (!inherits(coord, "CoordSf")) {
cli::cli_abort("{.fn {snake_class(self)}} can only be used with {.fn coord_sf}.")
}
if (is.character(data$shape)) {
data$shape <- translate_shape_string(data$shape)
}

data <- coord$transform(data, panel_params)

Expand Down