STPointFromText (geography Data Type)
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.
STPointFromText ( 'point_tagged_text' , SRID )
Argumenty
point_tagged_text
Is the WKT representation of the geographyPoint instance you wish to return.point_tagged_text is an nvarchar(max) expression.SRID
Is an int expression representing the spatial reference ID (SRID) of the geographyPoint instance you wish to return.
Zwracane typy
SQL Server typ zwrotny: geography
Zwracany typ CLR: SqlGeography
Typ OGC: Point
Remarks
Ta metoda wygeneruje FormatException Jeśli dane wejściowe nie są well-formatted.
Przykłady
W poniższym przykładzie użyto STPointFromText() Aby utworzyć geography wystąpienie.
DECLARE @g geography;
SET @g = geography::STPointFromText('POINT(-122.34900 47.65100)', 4326);
SELECT @g.ToString();