ST_AsEsriJSON

ST_AsEsriJSON takes a geometry column and returns the Esri JSON representation of the geometry as a string column.

FunctionSyntax
Pythonas_esri_json(geometry)
SQLST_AsEsriJson(geometry)
ScalaasEsriJson(geometry)

For more details, go to the GeoAnalytics for Microsoft Fabric API reference for as_esri_json.

Examples

PythonPythonSQLScala
Use dark colors for code blocksCopy
1
2
3
4
5
6
7
from geoanalytics_fabric.sql import functions as ST, Point

df = spark.createDataFrame([(Point(-178, -17),)], ["point"])

df.select(ST.as_esri_json("point").alias("as_esri_json")).show(truncate=False)
Result
Use dark colors for code blocksCopy
1
2
3
4
5
+------------------+
|as_esri_json      |
+------------------+
|{"x":-178,"y":-17}|
+------------------+

Version table

ReleaseNotes

1.0.0-beta

Python, SQL, and Scala functions introduced

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.