Udostępnij za pośrednictwem


STMPointFromText (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.

STMPointFromText ( 'multipoint_tagged_text', SRID )

Argumenty

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

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

Zwracane typy

SQL Server typ zwrotny: geography

Zwracany typ CLR: SqlGeography

Typ OGC: MultiPoint

Remarks

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

Przykłady

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

DECLARE @g geography; 
SET @g = geography::STMPointFromText('MULTIPOINT(-122.360 47.656, -122.343 47.656)', 4326);
SELECT @g.ToString();

See Also

Other Resources