//! Latitude and longitude coordinates for internal use only. For now.
/// The latitude and longitude
#[derive(Debug, Clone, Copy, PartialEq)]pubstructCoords{publat:f64,
publon:f64,
}implFrom<(f64, f64)>forCoords{fnfrom(pair:(f64,f64))->Self{Self{
lat: pair.0,
lon: pair.1,}}}