Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GNSS #298

Merged
merged 7 commits into from
Aug 21, 2024
Merged

GNSS #298

Changes from 6 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
7 changes: 7 additions & 0 deletions anise/src/frames/frame.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,13 @@ impl Frame {

Ok(Self::new(ephemeris_id, orientation_id))
}

/// Define Ellipsoid shape and return a new [Frame]
pub fn with_ellipsoid(&self, shape: Ellipsoid) -> Self {
gwbres marked this conversation as resolved.
Show resolved Hide resolved
gwbres marked this conversation as resolved.
Show resolved Hide resolved
let mut s = self.clone();
s.shape = Some(shape);
s
}
}

#[cfg_attr(feature = "python", pymethods)]
Expand Down
Loading