Udostępnij za pośrednictwem


STPolyFromWKB (geography Data Type)

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

STPolyFromWKB ( 'WKB_polygon' , SRID )

Argumenty

  • WKB_polygon
    Is the WKB representation of the geographyPolygon instance you wish to return.WKB_polygon is a varbinary(max) expression.

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

Zwracane typy

SQL Server typ zwrotny: geography

Zwracany typ CLR: SqlGeography

Typ OGC: Polygon

Remarks

Ta metoda wygeneruje FormatException Jeśli dane wejściowe nie są well-formatted.

Przykłady

W poniższym przykładzie użyto STPolyFromWKB() Aby utworzyć geography wystąpienie.

DECLARE @g geography; 
SET @g = geography::STPolyFromWKB(0x01030000000100000005000000F4FDD478E9965EC0DD24068195D3474083C0CAA145965EC0508D976E12D3474083C0CAA145965EC04E62105839D44740F4FDD478E9965EC04E62105839D44740F4FDD478E9965EC0DD24068195D34740, 4326);
SELECT @g.ToString();

See Also

Other Resources