#tile #level #minimalist #quad-tree #command-line-tool #image #map

app mapback-rs

A minimalistic command-line tool designed to generate unzoomed level images from map tiles organized in a quadtree structure

1 unstable release

0.1.0 Apr 22, 2024

#99 in Images

Download history 154/week @ 2024-04-21 7/week @ 2024-04-28

161 downloads per month

MIT license

13KB
116 lines

mapback-rs

mapback-rs is a minimalistic command-line tool designed to generate unzoomed level images from map tiles organized in a quadtree structure.

Installation

To install mapback-rs, you need to have Rust and Cargo installed on your system. If you don't have them installed, please follow the official installation guide: https://www.rust-lang.org/tools/install

Once you have Rust and Cargo set up, you can install mapback-rs by running the following command:

cargo install mapback-rs

This will download and compile the mapback-rs package from crates.io and install it in your Cargo binary directory.

Usage

To use mapback-rs, run the following command:

mapback-rs <folder>

Replace <folder> with the path to the folder containing your map tile images.

Options

  • --max-zoom <level>: Specifies the most detailed zoom level to consider. Default is 18.
  • --min-zoom <level>: Specifies the least detailed zoom level to consider. Default is 0.

Example

mapback-rs ../map_tiles --max-zoom 16 --min-zoom 10

This command will process the map tiles in the ../map_tiles folder, starting from zoom level 16 and unzooming until zoom level 10.

File Structure

The map tile images should be organized in the following quadtree structure:

<folder>
├── <zoom_level>
│   ├── <x>
│   │   ├── <y>.png
│   │   └── ...
│   └── ...
└── ...
  • <folder>: The root folder containing the map tile images.
  • <zoom_level>: The zoom level directory (e.g., 16, 15, 14, etc.).
  • <x>: The X-coordinate directory.
  • <y>.png: The map tile image file, where <y> represents the Y-coordinate.

Acknowledgements

  • Rust
  • clap - A simple to use, efficient, and full-featured command-line argument parser
  • image - Imaging library written in Rust
  • indicatif - A command line progress reporting library for Rust

Dependencies

~13–21MB
~150K SLoC