oxigdal-streaming 0.1.4

Real-time data processing and streaming pipelines for OxiGDAL
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! 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::{TileProtocol, TileRequest, TileResponse, TileCoordinate};
pub use provider::{TileProvider, TileSource};
pub use pyramid::{TilePyramid, TileMatrix, ZoomLevel};