Struct kml::ExtraShapes [−][src]
pub struct ExtraShapes { pub shapes: Vec<ExtraShape>, }
Some dataset imported from KML, CSV, or something else. If the dataset is large, converting to this format and serializing is faster than parsing the original again.
Fields
shapes: Vec<ExtraShape>
Implementations
impl ExtraShapes
[src]
impl ExtraShapes
[src]pub fn load_csv(
path: String,
gps_bounds: &GPSBounds,
timer: &mut Timer<'_>
) -> Result<ExtraShapes>
[src]
path: String,
gps_bounds: &GPSBounds,
timer: &mut Timer<'_>
) -> Result<ExtraShapes>
Parses a .csv file and returns ExtraShapes. Each record must EITHER have a column called ‘Longitude’ and ‘Latitude’, representing a single point, OR a column called ‘geometry’ with a WKT-style linestring. All other columns will just be attributes. Objects that’re partly out-of-bounds will be excluded.
Trait Implementations
impl<'de> Deserialize<'de> for ExtraShapes
[src]
impl<'de> Deserialize<'de> for ExtraShapes
[src]fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
impl Serialize for ExtraShapes
[src]
impl Serialize for ExtraShapes
[src]Auto Trait Implementations
impl RefUnwindSafe for ExtraShapes
impl Send for ExtraShapes
impl Sync for ExtraShapes
impl Unpin for ExtraShapes
impl UnwindSafe for ExtraShapes
Blanket Implementations
impl<T> Instrument for T
[src]
impl<T> Instrument for T
[src]pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T> Same<T> for T
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
T: for<'de> Deserialize<'de>,