Quadkey
Quadkey Home Quadkey is a hierarchical spatial indexing system used by microsoft bing maps. it divides the earth into quadrants (tiles) at multiple zoom levels using a quadtree structure. To convert tile coordinates into a quadkey, the bits of the y and x coordinates are interleaved, and the result is interpreted as a base 4 number (with leading zeros maintained) and converted into a string.
Github Buckhx Quadkey Quad Key Object Used For Geospatial Segmentation With this tool you can quickly see which tiles are in view for any zoom level and map extent. you can also view each tile's address, quadkey, zoom level, and area. use the input fields to search for a quadkey or coordinates, or upload a geojson. A quadkey is a string that uniquely identifies a map tile. instead of referencing a tile by zoom level, x coordinate, and y coordinate (z x y format), a quadkey encodes all three into one hierarchical string. Each quadkey is made up of 4 smaller quadkeys at the next zoom level which are made up of the quadkey id plus 0, 1, 2, or 3. for example, quadkey 230 the quadkeys 2300, 2301, 2302, and 2303. This quadkey identifies the tile at the specified coordinates and zoom level in a hierarchical way, allowing us to efficiently retrieve and display the tile in a tile based map system.
Github Glassonion1 Quadkey Tilemath Tile System Math For The Each quadkey is made up of 4 smaller quadkeys at the next zoom level which are made up of the quadkey id plus 0, 1, 2, or 3. for example, quadkey 230 the quadkeys 2300, 2301, 2302, and 2303. This quadkey identifies the tile at the specified coordinates and zoom level in a hierarchical way, allowing us to efficiently retrieve and display the tile in a tile based map system. About quadkeys quadkeys are strings of digits (0 3) that uniquely identify tiles in the bing maps tile system. each digit represents a quadrant at a specific zoom level. this tool extracts the x, y, and z coordinates from a quadkey string. In fact, a quadkey is a string containing a numeric value. the value is obtained by interleaving the bits of the row and column coordinates of a tile in the grid at the given zoom level, then converting the result to a base 4 number (the leading zeros are retained). The "quadkey" is then a repeated string of numbers from 0 3 which identify which of the four child nodes to follow. for example, "210123" would be a node at the sixth level of the tree. Muety pyquadkey2 originates from a fork of buckhx quadkey, which is not maintained anymore. it build on top of that project and adds: several (critical) bug fixes python 3 support type hints for all methods higher test coverage cython backend for improved performance 64 bit integer representation of quadkeys.
Comments are closed.