Giter Club home page Giter Club logo

quadkey's Introduction

QuadKey

Quad key object used for Geospatial segmentation. Based off the idea of a quadtree and used as the Bing Maps tile system.

Given a (lat, lon) and level produce a quadkey to be used in Bing Maps. Can also supply methods to generate a Google Maps TileXYZ

Built off of the TileSystem static class outlined here: http://msdn.microsoft.com/en-us/library/bb259689.aspx

Converts a lat,lon to pixel space to tile space to a quadkey

import quadkey

qk = quadkey.from_geo((-105, 40), 17)
print qk.key # => 02310101232121212 
assert qk.level is 17
tile = qk.to_tile() # => [(x, y), z]

Not a lot of documentation here, but the implementation has quite a bit, so look at the QuadKey definitions for better documention

Install

The package on pypi is quadtweet, so the recommended installation is with pip

 pip install quadkey

Methods

There are many straightforward methods, so I'll only go into detail of the unique ones

  • children()
  • parent()
  • is_ancestor()
  • is_descendent()
  • area()
  • to_geo()
  • to_tile()

####difference(to)

Gets the quadkeys between self and to forming a rectangle, inclusive.

qk.difference(to) -> [qk,,,,,to]

####unwind()

Gets a list of all ancestors in descending order by level, inclusive.

QuadKey('0123').unwind() -> ['0123','012','01','0']

quadkey's People

Contributors

acatdemon avatar buckhx avatar geekman2 avatar

Watchers

Keith avatar James Cloos avatar  avatar  avatar

Forkers

acatdemon

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.