Udostępnij za pośrednictwem


STMPolyFromText (lokalizacja geograficzna, typ danych)

Zwraca geography wystąpienie z reprezentacja OGC (Otwieranie lokalizacji geograficznych Consortium) Well-Known tekstu (WKT), rozszerzony z dowolnego Z (podniesienie) i wartości M (miara) przez wystąpienie.

STMPolyFromText ( 'multipolygon_tagged_text' , SRID )

Argumenty

  • multipolygon_tagged_text
    Is the WKT representation of the geographyMultiPolygon instance you wish to return.multipolygon_tagged_text is an nvarchar(max) expression.

  • SRID
    Is an int expression representing the spatial reference ID (SRID) of the geographyMultiPolygon instance you wish to return.

Zwracane typy

SQL Server typ zwrotny: geography

Zwracany typ CLR: Sql Geography

Typ OGC: MultiPolygon

Remarks

Ta metoda wygeneruje FormatException Jeśli dane wejściowe nie są well-formatted.

Przykłady

W poniższym przykładzie użyto STMPolyFromText() Aby utworzyć geography wystąpienie.

DECLARE @g geography;
SET @g = geography::STMPolyFromText('MULTIPOLYGON(((-122.358 47.653, -122.348 47.649, -122.358 47.658, -122.358 47.653)), ((-122.341 47.656, -122.341 47.661, -122.351 47.661, -122.341 47.656)))', 4326);
SELECT @g.ToString();

See Also

Other Resources