Skip to content

Latest commit

 

History

History
61 lines (46 loc) · 1.76 KB

File metadata and controls

61 lines (46 loc) · 1.76 KB
title STLineFromWKB (geography Data Type)
description STLineFromWKB (geography Data Type)
author MladjoA
ms.author mlandzic
ms.date 07/30/2017
ms.service sql
ms.subservice t-sql
ms.topic reference
ms.custom
ignite-2024
f1_keywords
STLineFromWKB (geography Data Type)
STLineFromWKB_TSQL
helpviewer_keywords
STLineFromWKB method
dev_langs
TSQL

STLineFromWKB (geography Data Type)

[!INCLUDE SQL Server Azure SQL Database Azure SQL Managed Instance FabricSQLDB]

Returns a LineString geography instance from an Open Geospatial Consortium (OGC) Well-Known Binary (WKB) representation.

Syntax

  
STLineFromWKB ( 'WKB_linestring' , SRID )  

Arguments

WKB_linestring
Is the WKB representation of the LineString geography instance you wish to return. WKB_linestring is a varbinary(max) expression.

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

Return Types

[!INCLUDEssNoVersion] return type: geography

CLR return type: SqlGeography

OGC type: LineString

Remarks

This method throws a FormatException if the input is not well-formatted.

Examples

The following example uses STLineFromWKB() to create a geography instance.

DECLARE @g geography;  
SET @g = geography::STLineFromWKB(0x010200000002000000D7A3703D0A975EC08716D9CEF7D34740CBA145B6F3955EC08716D9CEF7D34740, 4326);  
SELECT @g.ToString();  

See Also

OGC Static Geography Methods