coords.data.frame: Create a new data.frame with a given coordinate system

View source: R/Conversion.R

coords.data.frameR Documentation

Create a new data.frame with a given coordinate system

Description

This does not affect the original object unless new coordinate system is directly assigned.

Usage

## S3 method for class 'data.frame'
coords(x, new.coords, ...)

Arguments

x

a data.frame with columns labelled x, y, z (for cartesian) or theta, phi (for spherical colatitude and longitude respectively)

new.coords

specifies the new coordinate system ("spherical" or "cartesian").

...

Unused arguments.

Value

A new data.frame whose coordinates are as specified by new.coords

Examples


## Create df with no coords, then create df2 with spherical coords
df <- data.frame(x = c(1,0,0), y = c(0,1,0), z = c(0,0,1))
df

df2 <- coords(df, new.coords = "spherical")
df2


## The function coords does not affect the original object.
## To change the coords assign a new value ("spherical or "cartesian")

coords(df, new.coords = "spherical")
df
coords(df) <- "spherical"
df


frycast/rcosmo documentation built on Oct. 11, 2022, 5:21 p.m.