Skip to content

Commit e2b0314

Browse files
authored
fix #4527 (#4530)
1 parent fff7c96 commit e2b0314

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

NEWS.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
#4521)
88
* Warn when grDevices specific arguments are passed to ragg devices (@thomasp85,
99
#4524)
10+
* Fix an issue where `coord_sf()` was reporting that it is non-linear
11+
even when data is provided in projected coordinates (@clauswilke, #4527)
1012

1113
# ggplot2 3.3.4
1214
This is a larger patch release fixing a huge number of bugs and introduces a

R/coord-sf.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ CoordSf <- ggproto("CoordSf", CoordCartesian,
2222

2323
params <- list(
2424
crs = crs,
25-
default_crs = self$default_crs %||% crs
25+
default_crs = self$default_crs
2626
)
2727
self$params <- params
2828

0 commit comments

Comments
 (0)