Skip to content

Latest commit

 

History

History
56 lines (41 loc) · 1.94 KB

stastext-geography-data-type.md

File metadata and controls

56 lines (41 loc) · 1.94 KB
title description author ms.author ms.date ms.service ms.subservice ms.topic f1_keywords helpviewer_keywords dev_langs
STAsText (geography Data Type)
STAsText (geography Data Type)
MladjoA
mlandzic
03/14/2017
sql
t-sql
reference
STAsText (geography Data Type)
STAsText_TSQL
STAsText method
TSQL

STAsText (geography Data Type)

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

Returns the Open Geospatial Consortium (OGC) Well-Known Text (WKT) representation of a geography instance. This text will not contain any Z (elevation) or M (measure) values carried by the instance.

This geography data type method supports FullGlobe instances or spatial instances that are larger than a hemisphere.

Syntax

  
.STAsText ( )  

[!INCLUDEsql-server-tsql-previous-offline-documentation]

Return Types

[!INCLUDEssNoVersion] return type: nvarchar(max)

CLR return type: SqlChars

Remarks

The OGC type of a geography instance can be determined by invoking STGeometryType().

In [!INCLUDEssSQL11], the set of possible results returned on the server has been extended to FullGlobe instances.

Examples

The following example uses STAsText() to create a LineString``geography instance from (-122.360, 47.656) to (-122.343, 47.656) from text. It then returns the result in text.

DECLARE @g geography;  
SET @g = geography::STGeomFromText('LINESTRING(-122.360 47.656, -122.343 47.656)', 4326);  
SELECT @g.STAsText();  

See Also

OGC Methods on Geography Instances