Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Applies to: Databricks Runtime 17.1 and above
Important
This feature is in Public Preview.
Returns the input GEOMETRY
value in Extended WKB (EWKB) format using the specified endianness, if provided.
If the endianness is not specified, the returned value is little-endian encoded.
Syntax
st_asewkb ( geoExpr[, endiannessExpr] )
Arguments
geoExpr
: AGEOMETRY
value.endiannessExpr
: An optionalSTRING
value, representing the endianness of the output WKB,'NDR'
for little-endian (default) or'XDR'
for big-endian.
Returns
A value of type BINARY
.
The returned value is the Extended WKB (EWKB) description of the input GEOMETRY
value using the specified endianness, if provided.
If the endianness is not specified, the returned value is little-endian encoded.
The function returns NULL
if any of the inputs is NULL
.
Examples
-- Export a 3DZ Cartesian point with SRID 4326 in EWKB format (default endianness).
> SELECT hex(st_asewkt(st_geomfromtext('POINT Z (1 2 100)', 4326)))
01010000A0E6100000000000000000F03F00000000000000400000000000005940
-- Export a 3DZ Cartesian point with SRID 4326 in big-endianness EWKB format.
> SELECT hex(st_asewkt(st_geomfromtext('POINT Z (1 2 100)', 4326), 'XDR'))
00A0000001000010E63FF000000000000040000000000000004059000000000000
Related functions
st_asbinary
functionst_asgeojson
functionst_asewkt
functionst_aswkb
functionst_aswkt
functionst_geogfromgeojson
functionst_geogfromtext
functionst_geogfromwkb
functionst_geogfromwkt
functionst_geomfromewkb
functionst_geomfromgeojson
functionst_geomfromtext
functionst_geomfromwkb
functionst_geomfromwkt
functionto_geography
functionto_geometry
functiontry_to_geography
functiontry_to_geometry
function