Rust support for reading and writing KML with a focus on conversion to geo-types
primitives.
```rust use std::path::Path; use kml::{Kml, KmlReader};
let kml_str = r#"
// Parse from a string let kml: Kml = kml_str.parse().unwrap();
// Read from a file path let kmlpath = Path::new(env!("CARGOMANIFESTDIR")) .join("tests") .join("fixtures") .join("polygon.kml"); let mut kmlreader = KmlReader::<_, f64>::frompath(kmlpath).unwrap(); let kmldata = kmlreader.read().unwrap();
// Read KMZ files with the zip
feature or default features enabled
let kmzpath = Path::new(env!("CARGOMANIFESTDIR"))
.join("tests")
.join("fixtures")
.join("polygon.kmz");
let mut kmzreader = KmlReader::<_, f64>::fromkmzpath(kmzpath).unwrap();
let kmzdata = kmz_reader.read().unwrap();
```
```rust use std::str; use quick_xml; use kml::{Kml, KmlWriter, types::{AltitudeMode, Coord, Point}};
let kml = Kml::Point(Point::new(1., 1., None));
let mut buf = Vec::new(); let mut writer = KmlWriter::from_writer(&mut buf); writer.write(&kml).unwrap(); ```
```rust use geotypes::{self, GeometryCollection}; use kml::{quickcollection, Kml, types::Point};
let kmlpoint = Point::new(1., 1., None); // Convert into geotypes primitives let geopoint = geotypes::Point::from(kmlpoint); // Convert back into kml::types structs let kmlpoint = Point::from(geo_point);
let kmlfolderstr = r#"
// Use the quickcollection helper to convert Kml to a geotypes::GeometryCollection
let geomcoll: GeometryCollection
All contributors are expected to follow the GeoRust Code of Conduct
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.