Skip to main content

Convert the output of karttapullautin into web mercator tiles

Project description

karttapullautin2tiles

Tests

Convert the output of karttapullautin into web mercator tiles.

karttapullautin is a command-line tool that converts LIDAR data into orienteering maps. Karttapullautin tool generates one png image per LIDAR tile. karttapullautin2tiles (k2t) addresses the task of merging these tiles and generating a x/y/z web mercator tile directory that is compatible with many map viewers.

Usage

After a successful karttapullautin run, you typically end up with a out directory containing *.png and corresponding *.pgw files, e.g.

576_5265.laz_depr.pgw
576_5265.laz_depr.png
576_5265.laz.pgw
576_5265.laz.png
576_5266.laz_depr.pgw
576_5266.laz_depr.png
576_5266.laz.pgw
576_5266.laz.png

Given such a directory, you can generate a web tile directory using

k2t list-tiles --proj EPSG:25832 --zoom 12 karttapullautin/out | k2t make-tiles --proj EPSG:25832 karttapullautin/out karttapullautin/tiles

The tool is separated into list-tiles and make-tiles, because it quite naturally allows for parallelization across multiple processes, or even machines. For instance, you can use GNU parallel to distribute the task across multiple processes:

k2t list-tiles --proj EPSG:25832 --zoom 12 karttapullautin/out | \
  parallel --pipe -j 6 --block 1 k2t make-tiles --proj EPSG:25832 karttapullautin/out karttapullautin/tiles

Command reference

The commands allow a certain degree of customization, e.g. specifying the projection used by the LIDAR files and the zoom levels you want to generate.

k2t list-tiles

Usage: k2t list-tiles [ARGS] [OPTIONS]

List the tiles that are covered by the karttapullautin output directory at the given zoom
level.

The main purpose of this command is to generate a list of tiles that can be passed (possibly
in chunks) to the make-tiles command.

╭─ Parameters ──────────────────────────────────────────────────────────────────────────────╮
│ *  DIR --dir  Input directory (karttapullautin output dir) [required]                     │
│ *  --proj     EPSG string of the projection used [required]                               │
│    --pattern  Search pattern for the pgw files [default: *depr*.pgw]                      │
│    --zoom     Zoom level to generate tiles for. When running make-tiles, all              │
│               karttapullautin png files for this tile need to fit in memory. [default:    │
│               12]                                                                         │
╰───────────────────────────────────────────────────────────────────────────────────────────╯

k2t make-tiles

Usage: k2t make-tiles [ARGS] [OPTIONS]

Create a web mercator tiles from karttapullautin output, given a list of tile coordinates.

The list of tiles is typically generated by the list-tiles command. You can split it in
chunks and pass it to multiple instances of make-tiles, e.g. to parallelize (see examples).
The format of the tile list is one json record per row, of the format {"x": 2162, "y": 1432,
"z": 12}. The list of tiles defines the lowest zoom level for which tiles will be generated.
All "child" tiles up to max_zoom will also be generated.

Note that all images required for a tile at min_zoom need to fit in memory. If you have
memory issues, consider setting a higher zoom level.

╭─ Parameters ──────────────────────────────────────────────────────────────────────────────╮
│ *  IN-DIR --in-dir        Input directory containing karttapullautin output files         │
│                           [required]                                                      │
│ *  OUT-DIR --out-dir      Output directory for tiles (z/x/y folder structure) [required]  │
│    TILE-LIST --tile-list  File with tiles to process. If not provided as file, will be    │
│                           read from stdin. This file is typically generated by k2t        │
│                           list-tiles. The file must contain one json string per row of    │
│                           the format {"x": 2162, "y": 1432, "z": 12}                      │
│ *  --proj                 EPSG string of the projection used by input images [required]   │
│    --pattern              Search pattern for pgw files in the input directory [default:   │
│                           *depr*.pgw]                                                     │
│    --max-zoom             Maximum zoom level to generate tiles for [default: 17]          │
│    --include-viewer       If enabled, include a HTML file to preview the generated tiles  │
│      --no-include-viewer  [default: True]                                                 │
╰───────────────────────────────────────────────────────────────────────────────────────────╯

Installation

You need to have Python 3.10 or newer installed on your system. If you don't have Python installed, we recommend installing uv.

There are several alternative options to install karttapullautin2tiles:

  1. Install the latest release of karttapullautin2tiles from PyPI:
uv tool install karttapullautin2tiles

# or using pip
pip install karttapullautin2tiles
  1. Run k2t without installation using uv:
uvx --from karttapullautin2tiles k2t
  1. Install the latest development version:
pip install git+https://github.com/grst/karttapullautin2tiles.git@main

Release notes

See the changelog.

Contact

Please use the issue tracker.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

karttapullautin2tiles-0.1.2.tar.gz (3.9 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

karttapullautin2tiles-0.1.2-py3-none-any.whl (35.8 kB view details)

Uploaded Python 3

File details

Details for the file karttapullautin2tiles-0.1.2.tar.gz.

File metadata

  • Download URL: karttapullautin2tiles-0.1.2.tar.gz
  • Upload date:
  • Size: 3.9 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for karttapullautin2tiles-0.1.2.tar.gz
Algorithm Hash digest
SHA256 f6a69623e877d4b9635268e0a5e3058f5473eeeb60ab41c565c72533b19e3846
MD5 72a78782af1463e24e60a0d291c01987
BLAKE2b-256 4e6c18c13973eea181b3cad16eca4bd971771dc1273905ee43029687c7afd710

See more details on using hashes here.

Provenance

The following attestation bundles were made for karttapullautin2tiles-0.1.2.tar.gz:

Publisher: release.yaml on grst/karttapullautin2tiles

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file karttapullautin2tiles-0.1.2-py3-none-any.whl.

File metadata

File hashes

Hashes for karttapullautin2tiles-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 c681da148fbc613cb826aebb72444afa9da03755fe7a4eacc5d5394e8e2f50cc
MD5 28a5ec4687cef75c7645480efcf14ce0
BLAKE2b-256 b71540ca680600c3db7ad241e6f7eff56d3682121763ac18d8b524e445e99ce6

See more details on using hashes here.

Provenance

The following attestation bundles were made for karttapullautin2tiles-0.1.2-py3-none-any.whl:

Publisher: release.yaml on grst/karttapullautin2tiles

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page