geo_geohash_to_polygon()
Aplica-se a: ✅Microsoft Fabric✅Azure Data Explorer✅Azure Monitor✅Microsoft Sentinel
Calcula o polígono que representa a área retangular do Geohash.
Leia mais sobre geohash.
Sintaxe
geo_geohash_to_polygon(
geohash)
Saiba mais sobre as convenções de sintaxe.
Parâmetros
Nome | Digitar | Obrigatória | Descrição |
---|---|---|---|
geohash | string |
✔️ | Um valor de geohash conforme foi calculado por geo_point_to_geohash(). A cadeia de caracteres geohash deve ter entre 1 e 18 caracteres. |
Devoluções
Polígono no formato GeoJSON e de um tipo de dados dinâmico . Se o geohash for inválido, a consulta produzirá um resultado nulo.
Observação
As bordas de geohash são linhas retas e não são geodésicas. Se o polígono geohash fizer parte de algum outro cálculo, considere densificá-lo com geo_polygon_densify().
Exemplos
print GeohashPolygon = geo_geohash_to_polygon("dr5ru");
Saída
GeohashPolygon |
---|
{ "type": "Polígono", "coordenadas": [ [[-74.00390625, 40.7373046875], [-73.9599609375, 40.7373046875], [-73.9599609375, 40.78125], [-74.00390625, 40.78125], [-74.00390625, 40.7373046875]]] } |
O exemplo a seguir monta a coleção de geometria GeoJSON de polígonos geohash.
// Geohash GeoJSON collection
datatable(lng:real, lat:real)
[
-73.975212, 40.789608,
-73.916869, 40.818314,
-73.989148, 40.743273,
]
| project geohash = geo_point_to_geohash(lng, lat, 5)
| project geohash_polygon = geo_geohash_to_polygon(geohash)
| summarize geohash_polygon_lst = make_list(geohash_polygon)
| project bag_pack(
"type", "Feature",
"geometry", bag_pack("type", "GeometryCollection", "geometries", geohash_polygon_lst),
"properties", bag_pack("name", "Geohash polygons collection"))
Saída
Column1 |
---|
{ "type": "Recurso", "geometry": {"type": "GeometryCollection","geometries": [ {"tipo": "Polígono", "coordenadas": [[[-74.00390625, 40.78125], [-73.9599609375, 40.78125], [-73.9599609375, 40.8251953125],[ -74.00390625, 40.8251953125], [ -74.00390625, 40.78125]]]}, {"type": "Polígono", "coordenadas": [[[ -73.9599609375, 40.78125], [-73.916015625, 40.78125], [-73.916015625, 40.8251953125], [-73.9599609375, 40.8251953125], [-73.9599609375, 40.78125]]]}, {"tipo": "Polígono", "coordenadas": [[[-74.00390625, 40.7373046875], [-73.9599609375, 40.7373046875], [-73.9599609375, 40.78125], [-74.00390625, 40.78125], [-74.00390625, 40.7373046875]]]}] }, "properties": {"name": "Coleção de polígonos Geohash" }} |
O exemplo a seguir retorna um resultado nulo devido à entrada de geohash inválida.
print GeohashPolygon = geo_geohash_to_polygon("a");
Saída
GeohashPolygon |
---|