STGeomCollFromWKB (type de données geography)
S’applique à : SQL Server Azure SQL Database Azure SQL Managed Instance
Retourne une instance GeometryCollection à partir d’une représentation OGC (Open Geospatial Consortium) WKB (Well-Known Binary).
Syntaxe
STGeomCollFromWKB ( 'WKB_geometrycollection' , SRID )
Arguments
WKB_geometrycollection
Représentation WKB de l’instance GeometryCollection à retourner. WKB_geometrycollection est une expression varbinary(max).
SRID
Expression int qui représente le SRID (ID de référence spatiale) de l’instance GeometryCollection à retourner.
Types de retour
Type de retour SQL Server : geography
Type de retour CLR : SqlGeography
Notes
Le type OGC de l’instance geography retournée par STGeomCollFromWKB() a la valeur GeometryCollection, MultiPolygon, MultiLineString ou MultiPoint, en fonction de l’entrée WKB correspondante.
Cette méthode lève une exception FormatException si l’entrée n’est pas au format approprié.
Exemples
L'exemple suivant utilise la méthode STGeomCollFromWKB()
pour créer une instance geography
.
DECLARE @g geography;
SET @g = geography::STGeomCollFromWKB(0x01070000000200000001010000007593180456965EC017D9CEF753D34740010200000002000000D7A3703D0A975EC08716D9CEF7D34740CBA145B6F3955EC08716D9CEF7D34740, 4326);
SELECT @g.ToString();