oxigeo-streaming 0.2.2

Real-time data processing and streaming pipelines for OxiGeo
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Tile-based streaming protocols for geospatial data.
//!
//! This module provides tile streaming capabilities following standard protocols
//! like XYZ, TMS, and WMTS.

pub mod cache;
pub mod protocol;
pub mod provider;
pub mod pyramid;

pub use cache::{TileCache, TileCacheConfig};
pub use protocol::{
    FileSystemTileProtocol, TileCoordinate, TileProtocol, TileRequest, TileResponse,
};
pub use provider::{TileGenerator, TileProvider, TileSource};
pub use pyramid::{TileMatrix, TilePyramid, ZoomLevel};