Condividi tramite


STLineFromWKB (tipo di dati geography)

Restitusce un'istanza LineString geography da una rappresentazione Well-Known Binary (WKB) OGC (Open Geospatial Consortium).

Sintassi

STLineFromWKB ( 'WKB_linestring' , SRID )

Argomenti

  • WKB_linestring
    Rappresentazione WKB dell'istanza LineString geography da restituire. WKB_linestring is a varbinary(max).

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

Tipi restituiti

Tipo SQL Server restituito: geographygeography

Tipo CLR restituito: SqlGeographySqlGeography

Tipo OGC: LineStringLineString

Osservazioni

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

Esempi

Nell'esempio seguente viene utilizzato il metodo STLineFromWKB() per creare un'istanza geography.

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

Vedere anche

Altre risorse