SqlGeography.STGeomFromText(SqlChars, Int32) Method

Definition

Returns a SqlGeography instance from an Open Geospatial Consortium (OGC) Well-Known Text (WKT) representation augmented with any Z (elevation) and M (measure) values carried by the instance.

[Microsoft.SqlServer.Server.SqlMethod(IsDeterministic=true, IsPrecise=false)]
public static Microsoft.SqlServer.Types.SqlGeography STGeomFromText (System.Data.SqlTypes.SqlChars geometryTaggedText, int srid);
[<Microsoft.SqlServer.Server.SqlMethod(IsDeterministic=true, IsPrecise=false)>]
static member STGeomFromText : System.Data.SqlTypes.SqlChars * int -> Microsoft.SqlServer.Types.SqlGeography
Public Shared Function STGeomFromText (geometryTaggedText As SqlChars, srid As Integer) As SqlGeography

Parameters

geometryTaggedText
SqlChars

The WKT representation of the SqlGeography instance you wish to return.

srid
Int32

An int expression that represents the spatial reference ID (SRID) of the SqlGeography instance you wish to return.

Returns

A SqlGeography instance constructed from the WKY representation.

Attributes

Applies to