Multiplies every x and y coordinate by 180 / pi. The geometry type of the
output matches the geometry type of the input.
Details
Only the x and y coordinates are converted. Z and M values are dropped, since the conversion goes through a two dimensional representation.
See also
Other convert:
ga_to_radians()
Examples
rad <- ga_xy(c(0, pi / 4), c(0, pi / 2))
geoarrow::as_geoarrow_vctr(ga_to_degrees(rad))
#> <geoarrow_vctr geoarrow.point{struct}[2]>
#> [1] <POINT (0 0)> <POINT (45 90)>