SqlGeography.Parse 方法 (SqlString)
返回 SqlGeography 从开放地理空间联盟 (OGC) 熟知文本 (WKT) 表示形式的实例。
命名空间: Microsoft.SqlServer.Types
程序集: Microsoft.SqlServer.Types(位于 Microsoft.SqlServer.Types.dll)
语法
[SqlMethodAttribute(IsDeterministic = true, IsPrecise = false)]
public static SqlGeography Parse(
SqlString s
)
public:
[SqlMethodAttribute(IsDeterministic = true, IsPrecise = false)]
static SqlGeography^ Parse(
SqlString s
)
[<SqlMethodAttribute(IsDeterministic = true, IsPrecise = false)>]
static member Parse :
s:SqlString -> SqlGeography
<SqlMethodAttribute(IsDeterministic := True, IsPrecise := False)>
Public Shared Function Parse (
s As SqlString
) As SqlGeography
参数
s
Type: System.Data.SqlTypes.SqlString要返回的 SqlGeography 实例的 WKT 表示形式。
返回值
Type: Microsoft.SqlServer.Types.SqlGeography
一个从指定的 WKT 表示形式构造的 SqlGeography 值。
备注
Parse 方法等效于 STGeomFromText 之处在于它假定空间引用 ID (SRID) 为 4326 作为参数。 输入值可以根据需要包含 Z(标高)和 M(度量)值。
另请参阅
SqlGeography 类
Microsoft.SqlServer.Types 命名空间
返回页首