geo_s2cell_to_polygon()
Si applica a: ✅Microsoft Fabric✅Azure Esplora dati✅ Azure Monitor✅Microsoft Sentinel
Calcola il poligono che rappresenta l'area rettangolare cella S2.
Altre informazioni sulle celle S2.
Sintassi
geo_s2cell_to_polygon(
s2cell)
Altre informazioni sulle convenzioni di sintassi.
Parametri
Nome | Digita | Obbligatorio | Descrizione |
---|---|---|---|
s2cell | string |
✔️ | Valore del token di cella S2 calcolato da geo_point_to_s2cell().S2 cell token value as was calculated by geo_point_to_s2cell(). La lunghezza massima del token di cella S2 è di 16 caratteri. |
Valori restituiti
Poligono in formato GeoJSON e di un tipo di dati dinamico . Se s2cell non è valido, la query genera un risultato Null.
Nota
I bordi delle celle S2 sono geodesici sferici.
Esempi
print s2cellPolygon = geo_s2cell_to_polygon("89c259")
Output
s2cellPolygon |
---|
{ "type": "Polygon", "coordinate": [[-74.030012249838478, 40.8012684339439], [-74.030012249838478, 40.7222262918358], [-73.935982114337421, 40.708880489804564], [-73.93598211437421, 40.787917134506841], [-74.030012249838478, 40.8012684339439]]] } |
Nell'esempio seguente viene assemblata la raccolta geometry GeoJSON dei poligoni celle S2.
datatable(lng:real, lat:real)
[
-73.956683, 40.807907,
-73.916869, 40.818314,
-73.989148, 40.743273,
]
| project s2_hash = geo_point_to_s2cell(lng, lat, 10)
| project s2_hash_polygon = geo_s2cell_to_polygon(s2_hash)
| summarize s2_hash_polygon_lst = make_list(s2_hash_polygon)
| project bag_pack(
"type", "Feature",
"geometry", bag_pack("type", "GeometryCollection", "geometries", s2_hash_polygon_lst),
"properties", bag_pack("name", "S2 Cell polygons collection"))
Output
Colonna1 |
---|
{ "type": "Feature", "geometry": {"type": "GeometryCollection", "geometries": [ {"type": "Polygon", "coordinate": [[-74.030012249838478, 40.880202851376716], [-74.030012249838478, 40.8012684339439], [-73.93598211437421, 40.787917134506841], [-73.93598211437421, 40.86684616345771], [-74.030012249838478, 40.880202851376716]]]}, {"type": "Polygon", "coordinate": [[-73.93598211437421, 40.86684616345771], [-73.93598211437421, 40.787917134506841], [-73.84190634076248, 40.774477568182071], [-73.841906340776248, 40.853401155678846], [-73.93598211437421, 40.866846163445771]]]}, {"type": "Polygon", "coordinates": [[-74.030012249838478, 40.8012684339439], [-74.030012249838478, 40.7222262918358], [-73.935982114337421, 40.708880489804564], [-73.93598211437421, 40.787917134506841], [-74.030012249838478, 40.8012684339439]]]}] }, "properties": {"name": "S2 Cell polygons collection"} } |
Nell'esempio seguente viene restituito un risultato Null a causa dell'input del token s2cell non valido.
print s2cellPolygon = geo_s2cell_to_polygon("a")
Output
s2cellPolygon |
---|