Skip to main content

The `TileClipper` package enables users to download map tiles within a specified bounding box from a tile server

Project description

TileClipper Package Usage Guide

Introduction

The TileClipper package enables users to download map tiles within a specified bounding box from a tile server. This guide illustrates the installation process, instantiation of the TileClipper class, and downloading map tiles using the package.

Installation

Ensure Python is installed on your system, then install the TileClipper package using pip:

pip install tileclipper
from tileclipper import TileClipper

Instantiate TileClipper

Define the required parameters for the TileClipper class:

base_url (str): Base URL of the tile server.
bbox (list): Bounding box coordinates [minx, miny, maxx, maxy].
output_folder (str): Directory to save downloaded tiles.
max_workers (int, optional): Maximum number of concurrent workers for tile downloads (default is 10).

Create an instance of the TileClipper class:

base_url = "https://example.com/tiles/"  # Replace with your tile server URL
bbox = [xmin, ymin, xmax, ymax]  # Replace with bounding box coordinates
output_folder = "/path/to/output/folder/"  # Replace with output folder path
max_workers = 10  # Optional: Set maximum workers for concurrent downloads

tileclipper = TileClipper(base_url, bbox, output_folder, max_workers)

Download Tiles

Utilize the download_tiles(zoom_start, zoom_end) method to download tiles within a specified zoom level range:

    # Download tiles within zoom level range 18 to 20
    tileclipper.download_tiles(18, 20)

Example

Here's an example demonstrating the usage of the TileClipper class:

from tileclipper import TileClipper

base_url = "https://example.com/tiles/"
bbox = [xmin, ymin, xmax, ymax]
output_folder = "/path/to/output/folder/"
max_workers = 10

tileclipper = TileClipper(base_url, bbox, output_folder, max_workers)
tileclipper.download_tiles(18, 20)
    

Replace the placeholder values (base_url, bbox, output_folder, etc.) with your specific values according to your use case.

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

tileclipper-0.10.tar.gz (16.7 kB view details)

Uploaded Source

Built Distribution

tileclipper-0.10-py3-none-any.whl (4.0 kB view details)

Uploaded Python 3

File details

Details for the file tileclipper-0.10.tar.gz.

File metadata

  • Download URL: tileclipper-0.10.tar.gz
  • Upload date:
  • Size: 16.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for tileclipper-0.10.tar.gz
Algorithm Hash digest
SHA256 8d915584539ce059dcaf9e0f3fe2eb521b3e137e8719370f938e7c5bc33ee7a6
MD5 e43c464abe4a6524256ed7f35d778b00
BLAKE2b-256 606cc08fada2968257a2402069061c44f973243e1fa13fb6a7f96083111615d8

See more details on using hashes here.

File details

Details for the file tileclipper-0.10-py3-none-any.whl.

File metadata

  • Download URL: tileclipper-0.10-py3-none-any.whl
  • Upload date:
  • Size: 4.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.18

File hashes

Hashes for tileclipper-0.10-py3-none-any.whl
Algorithm Hash digest
SHA256 072663a9e092651d4627a498c643b2aec56832e0f5ba1edce1f3da27a4c30c7c
MD5 0506d0a09cfe9ae0da6760a1badf1f67
BLAKE2b-256 81226625f0f25c8a91ef0c8ca8994fb00f7de0f0380147b7c10ca9397e8dbf70

See more details on using hashes here.

Supported by

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