Condividi tramite


STGeomCollFromWKB (tipo di dati geometry)

Restituisce un'istanza geometrycollection di una rappresentazione Well-Known Binary (WKB) OGC (Open Geospatial Consortium).

Sintassi

STGeomCollFromWKB ( 'WKB_geometrycollection' , SRID )

Argomenti

  • WKB_geometrycollection
    Rappresentazione WKB dell'istanza geometrycollection da restituire. WKB_geometrycollection è un'espressione varbinary(max).

  • SRID
    Espressione int che rappresenta l'identificatore SRID dell'istanza geometry da restituire.

Tipi restituiti

SQL Server - Tipo restituito: geometry

CLR - Tipo restituito: SqlGeometry

Osservazioni

Il tipo OGC dell'istanza geometry restituito da STGeomCollFromWKB() è impostato su GeomCollection, MultiPolygon, MultiLineString o MulitPoint, in base all'input WKB corrispondente.

Questo metodo genererà un'eccezione FormatException se l'input non è formattato in modo corretto.

Esempi

Nell'esempio seguente viene utilizzato il metodo STGeomCollFromWKB() per creare un'istanza geometry.

DECLARE @g geometry;
SET @g = geometry::STGeomCollFromWKB(0x0107000000020000000103000000010000000400000000000000000014400000000000001440000000000000244000000000000014400000000000002440000000000000244000000000000014400000000000001440010100000000000000000024400000000000002440, 0);
SELECT @g.STAsText();

Vedere anche

Altre risorse