quadbin
You can learn more about Quadbins in the Spatial Indexes section of the documentation.
QUADBIN_BBOX
QUADBIN_BBOX(quadbin)Description
Returns an array with the boundary box of a given Quadbin. This boundary box contains the minimum and maximum longitude and latitude. The output format is [West-South, East-North] or [min long, min lat, max long, max lat].
quadbin:INT64Quadbin to get the bbox from.
Return type
ARRAY<FLOAT64>
Example
SELECT `carto-un`.carto.QUADBIN_BBOX(5207251884775047167);
-- -22.5
-- 21.943045533438188
-- 0.0
-- 40.979898069620127SELECT `carto-un-eu`.carto.QUADBIN_BBOX(5207251884775047167);
-- -22.5
-- 21.943045533438188
-- 0.0
-- 40.979898069620127SELECT carto.QUADBIN_BBOX(5207251884775047167);
-- -22.5
-- 21.943045533438188
-- 0.0
-- 40.979898069620127QUADBIN_BOUNDARY
QUADBIN_BOUNDARY(quadbin)Description
Returns the boundary for a given Quadbin as a polygon GEOGRAPHY with the same coordinates as given by the QUADBIN_BBOX function.
quadbin:INT64Quadbin to get the boundary geography from.
Return type
GEOGRAPHY
Example
QUADBIN_CENTER
Description
Returns the center of a given Quadbin. The center is the intersection point of the four immediate children Quadbins.
quadbin:INT64Quadbin to get the center from.
Return type
GEOGRAPHY
Example
QUADBIN_DISTANCE
Description
Returns the Chebyshev distance between two quadbin indexes. The origin and destination indices must have the same resolution. Otherwise NULL will be returned.
origin:INT64origin quadbin index.destination:INT64destination quadbin index.
Return type
INT64
Example
QUADBIN_FROMGEOGPOINT
Description
Returns the Quadbin of a given point at a requested resolution. This function is an alias for QUADBIN_FROMGEOPOINT.
point:GEOGRAPHYpoint to get the Quadbin from.resolution:INT64level of detail or zoom.
Return type
INT64
Example
QUADBIN_FROMLONGLAT
Description
Returns the Quadbin representation of a point for a requested resolution and geographic coordinates.
longitude:FLOAT64longitude (WGS84) of the point.latitude:FLOAT64latitude (WGS84) of the point.resolution:INT64level of detail or zoom.
Return type
INT64
Example
QUADBIN_FROMQUADKEY
Description
Compute a quadbin index from a quadkey.
quadkey:STRINGQuadkey representation of the index.
Return type
INT64
Example
QUADBIN_FROMZXY
Description
Returns a Quadbin from z, x, y tile coordinates.
z:INT64zoom level.x:INT64horizontal position of a tile.y:INT64vertical position of a tile.
Constraints
Tile coordinates x and y depend on the zoom level z. For both coordinates, the minimum value is 0, and the maximum value is two to the power of z, minus one (2^z - 1).
Note that the y coordinate increases from North to South, and the y coordinate from West to East.
Return type
INT64
Example
QUADBIN_ISVALID
Description
Returns true when the given index is a valid Quadbin, false otherwise.
quadbin:INT64Quadbin index.
Return type
BOOLEAN
Examples
QUADBIN_KRING
Description
Returns all Quadbin cell indexes in a filled square k-ring centered at the origin in no particular order.
origin:INT64Quadbin index of the origin.size:INT64size of the ring (distance from the origin).
Return type
ARRAY<INT64>
Example
QUADBIN_KRING_DISTANCES
Description
Returns all Quadbin cell indexes and their distances in a filled square k-ring centered at the origin in no particular order.
origin:INT64Quadbin index of the origin.size:INT64size of the ring (distance from the origin).
Return type
ARRAY<STRUCT<index INT64, distance INT64>>
Example
QUADBIN_POLYFILL
Description
Returns an array of quadbin cell indexes contained in the given geography (Polygon, MultiPolygon) at a requested resolution. Containment is determined by the cells' center. This function is equivalent to QUADBIN_POLYFILL_MODE with mode center.
geog:GEOGRAPHYrepresenting the shape to cover.resolution:INT64level of detail. The value must be between 0 and 26.
Use QUADBIN_POLYFILL_MODE with mode intersects in the following cases:
You want to provide the minimum covering set of a Polygon, MultiPolygon.
The input geography type is Point, MultiPoint, LineString, MultiLineString.
Return type
ARRAY<INT64>
Examples
QUADBIN_POLYFILL_MODE
Description
Returns an array of quadbin cell indexes contained in the given geography at a requested resolution. Containment is determined by the mode: center, intersects, contains.
geog:GEOGRAPHYrepresenting the shape to cover.resolution:INT64level of detail. The value must be between 0 and 26.mode:STRINGcenterreturns the indexes of the quadbin cells which centers intersect the input geography (polygon). The resulting quadbin set does not fully cover the input geography, however, this is significantly faster that the other modes. This mode is not compatible with points or lines. Equivalent toQUADBIN_POLYFILL.intersectsreturns the indexes of the quadbin cells that intersect the input geography. The resulting quadbin set will completely cover the input geography (point, line, polygon).containsreturns the indexes of the quadbin cells that are entirely contained inside the input geography (polygon). This mode is not compatible with points or lines.
Mode center:

Mode intersects:

Mode contains:

Return type
ARRAY<INT64>
Examples
QUADBIN_POLYFILL_TABLE (BETA)
Description
Returns a table with the quadbin cell indexes contained in the given geography at a requested resolution. Containment is determined by the mode: center, intersects, contains. All the attributes except the geography will be included in the output table, clustered by the quadbin column.
input_query:STRINGinput data to polyfill. It must contain a columngeomwith the shape to cover. Additionally, other columns can be included.resolution:INT64level of detail. The value must be between 0 and 26.mode:STRINGcenterreturns the indexes of the quadbin cells which centers intersect the input geography (polygon). The resulting quadbin set does not fully cover the input geography, however, this is significantly faster that the other modes. This mode is not compatible with points or lines. Equivalent toQUADBIN_POLYFILL.intersectsreturns the indexes of the quadbin cells that intersect the input geography. The resulting quadbin set will completely cover the input geography (point, line, polygon).containsreturns the indexes of the quadbin cells that are entirely contained inside the input geography (polygon). This mode is not compatible with points or lines.
output_table:STRINGname of the output table to store the results of the polyfill.
Mode center:

Mode intersects:

Mode contains:

Output
The results are stored in the table named <output_table>, which contains the following columns:
quadbin:INT64the geometry of the considered point.The rest of columns included in
input_queryexceptgeom.
Examples
QUADBIN_RESOLUTION
Description
Returns the resolution of the input Quadbin.
quadbin:INT64Quadbin from which to get the resolution.
Return type
INT64
Example
QUADBIN_SIBLING
Description
Returns the Quadbin directly next to the given Quadbin at the same resolution. The direction must be set in the corresponding argument and currently only horizontal/vertical neigbours are supported. It will return NULL if the sibling does not exist.
quadbin:INT64Quadbin to get the sibling from.direction:STRING'right'|'left'|'up'|'down'direction to move in to extract the next sibling.
Return type
INT64
Example
QUADBIN_TOCHILDREN
Description
Returns an array with the children Quadbins of a given Quadbin for a specific resolution. A children Quadbin is a Quadbin of higher level of detail that is contained by the current Quadbin. Each Quadbin has four direct children (at the next higher resolution).
quadbin:INT64Quadbin to get the children from.resolution:INT64resolution of the desired children.
Return type
ARRAY<INT64>
Example
QUADBIN_TOPARENT
Description
Returns the parent (ancestor) Quadbin of a given Quadbin for a specific resolution. An ancestor of a given Quadbin is a Quadbin of smaller resolution that spatially contains it.
quadbin:INT64Quadbin to get the parent from.resolution:INT64resolution of the desired parent.
Return type
INT64
Example
QUADBIN_TOQUADKEY
Description
Compute a quadkey from a quadbin index.
quadbin:INT64Quadbin index.
Return type
STRING
Example
QUADBIN_TOZXY
Description
Returns the zoom level z and coordinates x, y for a given Quadbin.
quadbin:INT64Quadbin from which to obtain the coordinates.
Return type
STRUCT<INT64, INT64, INT64>
Example
This project has received funding from the European Union’s Horizon 2020 research and innovation programme under grant agreement No 960401.
Last updated
Was this helpful?
