Condividi tramite


STAsBinary (tipo di dati geography)

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

Questo metodo con tipo di dati geography supporta le istanze FullGlobe o le istanze spaziali con dimensioni maggiori di un emisfero.

Sintassi

.STAsBinary ( )

Tipi restituiti

SQL Server tipo restituito: varbinary(max)

Tipo CLR restituito: SqlBytes

Osservazioni

Il tipo OGC di un'istanza geography può essere determinato richiamando STGeometryType().

Esempi

Nell'esempio seguente viene utilizzato STAsBinary() per creare un'istanza LineString geography da (-122.360, 47.656) a (-122.343, 47.656) dal testo. e viene restituito il risultato in formato WKB.

DECLARE @g geography;
SET @g = geography::STGeomFromText('LINESTRING( -122.360 47.656, -122.343 47.656)', 4326);
SELECT @g.STAsBinary();

Vedere anche

Altre risorse

Metodi OGC sulle istanze di geografia