1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
//! Sources that load vector features from on-disk formats.
//!
//! Each format adapter implements [`FeatureSource`] and yields features as a
//! stream. v1 adapters fully read the input synchronously and emit from
//! [`futures::stream::iter`]; future streaming adapters (FlatGeobuf, OSM PBF)
//! can pull records on demand without changing the public API.
pub use ;
pub use ;
pub use ;
pub use ShapefileSource;
use crateGeoFeature;
use Result;
use BoxStream;
/// A source that produces a stream of [`GeoFeature`]s loaded from an on-disk format.