use crate::Projection;
#[derive(Debug, Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct LongitudeLatitude;
impl Projection for LongitudeLatitude {
#[inline]
fn project_unchecked(&self, lon: f64, lat: f64) -> (f64, f64) {
(lon, lat)
}
#[inline]
fn inverse_project_unchecked(&self, x: f64, y: f64) -> (f64, f64) {
(x, y)
}
}