versatiles_container 4.10.0

A toolbox for converting, checking and serving map tiles in various formats.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Use a directory as a tile container
//!
//! This module provides structures and implementations for reading and writing tiles to and from a directory structure.
//!
//! The main components of this module are:
//! - `DirectoryReader`: Reads tiles from a directory structure.
//! - `DirectoryWriter`: Writes tiles to a directory structure.

mod reader;
mod sink;
mod writer;

pub use reader::DirectoryReader;
pub use sink::DirectoryTileSink;
pub use writer::DirectoryWriter;