ecoord-transform 0.0.2-alpha.1

Supplementary operations for transforming between 3D coordinate frames.
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::error::Error;
use chrono::{DateTime, Utc};
use ecoord_core::TransformTree;

pub fn interpolate_to_time(
    _transform_tree: TransformTree,
    _timestamp: DateTime<Utc>,
) -> Result<(), Error> {
    Ok(())
}