xForm Tile Coordinates
Project description
[![Build Status](https://travis-ci.org/mapbox/xt.svg?branch=master)](https://travis-ci.org/mapbox/xt) [![Coverage Status](https://coveralls.io/repos/github/mapbox/xt/badge.svg?branch=master)](https://coveralls.io/github/mapbox/xt?branch=master)
Automatically convert a stream of tile coordinates to another format
z/x/y | z-x-y ==> [x, y, z]
[x, y, z] ==> z/x/y | z-x-y | z?x?y -d ?
Installation
` pip install xt ` Or to develop: ` git@github.com:mapbox/xt.git && cd xt && pip install -e '.[test]' `
Examples
Tile URL to [mercantile](https://github.com/mapbox/mercantile) [x, y, z] ` » echo https://map.s/17/20971/5051.png | xt [20971, 50651, 17] ` mercantile to z/x/y ` » echo '[0, 0, 0]' | xt 0/0/0 ` mercantile to z-x-y ` » echo '[100, 100, 100]' | xt -d - 100-100-100 ` roundtripping ` » pbpaste | xt | xt -d - | xt | xt | xt | xt -d | xt | xt 17/20972/50653 ` Using mercantile to generate tile urls from a parent tile: ` » echo '[0, 0, 0]' | mercantile children --depth 2 | xt | awk '{print "https://map.s/"$NF".png"}' https://map.s/2/0/0.png https://map.s/2/1/0.png https://map.s/2/1/1.png https://map.s/2/0/1.png https://map.s/2/2/0.png https://map.s/2/3/0.png https://map.s/2/3/1.png https://map.s/2/2/1.png https://map.s/2/2/2.png https://map.s/2/3/2.png https://map.s/2/3/3.png https://map.s/2/2/3.png https://map.s/2/0/2.png https://map.s/2/1/2.png https://map.s/2/1/3.png https://map.s/2/0/3.png `
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file xt-0.1.1.tar.gz
.
File metadata
- Download URL: xt-0.1.1.tar.gz
- Upload date:
- Size: 2.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: Python-urllib/3.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3365dcd6ce7845cb379d747103409b3765b2b8e1dd895dc435d23d855fd2b937 |
|
MD5 | e00fd711e3756591198eeea80e8faa07 |
|
BLAKE2b-256 | cede2042aa98ff9cb2574e0a8f4362747395a52f5732e097dcfd56cefb155a6c |