Condividi tramite


STPointFromWKB (tipo di dati geography)

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

Sintassi

STPointFromWKB ( 'WKB_point' , SRID )

Argomenti

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

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

Tipi restituiti

Tipo SQL Server restituito: geographygeography

Tipo CLR restituito: SqlGeographySqlGeography

Tipo OGC: PointPoint

Osservazioni

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

Esempi

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

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

Vedere anche

Altre risorse