STMPolyFromWKB (geometry Data Type)

Applies to: SQL Server Azure SQL Database Azure SQL Managed Instance

Returns a geometryMultiPolygon instance from an Open Geospatial Consortium (OGC) Well-Known Binary (WKB) representation.

Syntax

  
STMPolyFromWKB ( 'WKB_multipolygon' , SRID )  

Note

To view Transact-SQL syntax for SQL Server 2014 (12.x) and earlier versions, see Previous versions documentation.

Arguments

WKB_multipolygon
Is the WKB representation of the geometryMultiPolygon instance you wish to return. WKB_multipolygon is a varbinary(max) expression.

SRID
Is an int expression representing the spatial reference ID (SRID) of the geometryMultiPolygon instance you wish to return.

Return Types

SQL Server return type: geometry

CLR return type: SqlGeometry

OGC type: MultiPolygon

Remarks

Examples

The following example uses STMPolyFromWKB() to create a geometry instance:

DECLARE @g geometry;   
SET @g = geometry::STMPolyFromWKB(0x0106000000020000000103000000010000000400000000000000000014400000000000001440000000000000244000000000000014400000000000002440000000000000244000000000000014400000000000001440010300000001000000050000000000000000002440000000000000244000000000000059400000000000002440000000000000694000000000000069400000000000003E400000000000003E4000000000000024400000000000002440, 0);  
SELECT @g.STAsText();  

See Also

OGC Static Geometry Methods