[][src]Crate geo_geojson

This crates converts geojson strings to GeometryCollection.

This is the missing link between the geo-types crate and the geojson crate and should probably be part of geojson.

Example

let geojson_str = fs::read_to_string("src/tests/demo.json")?;
let collection: geo_types::GeometryCollection<f64> = geo_geojson::from_str(&geojson_str)?;

Modules

conversion

This module contains conversion function from geojson types to GeometryCollection.

Functions

from_str

Converts geojson strings to GeometryCollection.