Partager via


STGeomCollFromWKB (type de données geography)

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 l'ID de référence spatial (SRID) de l'instance GeometryCollection à retourner.

Types des valeurs de retour

SQL Server : geography

Type de retour CLR : SqlGeography

Notes

Le type OGC de l'instance geography retourné par STGeomCollFromWKB() est défini sur GeometryCollection, MultiPolygon, MultiLineString ou MultiPoint, selon l'entrée WKB correspondante.

Cette méthode lève une exception FormatException si l'entrée n'est pas correctement mise en forme.

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();

Voir aussi

Autres ressources

Méthodes géographiques statiques OGC