Skip to content

Commit

Permalink
Add translate_string_shape to GeomSf. Fixes #5808
Browse files Browse the repository at this point in the history
  • Loading branch information
sierrajohnson committed Aug 15, 2024
1 parent c1b6275 commit d6aca63
Showing 1 changed file with 3 additions and 0 deletions.
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

0 comments on commit d6aca63

Please sign in to comment.