Giter Site home page Giter Site logo

xt's Introduction

xt

Build Status Coverage Status

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:

[email protected]:mapbox/xt.git && cd xt && pip install -e '.[test]'

Examples

Tile URL to 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

xt's People

Contributors

dnomadb avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.