pub struct DynamicCrs {
pub frame_reference_epoch: f64,
pub deformation_model: Option<DeformationModel>,
}Expand description
Dynamic CRS attributes for a CRS with a time-varying reference frame.
In a dynamic CRS, coordinate values of a point change with time.
WKT2 keyword: DYNAMIC.
Fields§
§frame_reference_epoch: f64The epoch at which the reference frame is defined (e.g. 2010.0).
deformation_model: Option<DeformationModel>An optional reference to a deformation model or velocity grid.
Trait Implementations§
Source§impl Clone for DynamicCrs
impl Clone for DynamicCrs
Source§fn clone(&self) -> DynamicCrs
fn clone(&self) -> DynamicCrs
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DynamicCrs
impl Debug for DynamicCrs
Source§impl Display for DynamicCrs
impl Display for DynamicCrs
Source§impl PartialEq for DynamicCrs
impl PartialEq for DynamicCrs
impl StructuralPartialEq for DynamicCrs
Auto Trait Implementations§
impl Freeze for DynamicCrs
impl RefUnwindSafe for DynamicCrs
impl Send for DynamicCrs
impl Sync for DynamicCrs
impl Unpin for DynamicCrs
impl UnsafeUnpin for DynamicCrs
impl UnwindSafe for DynamicCrs
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more