By: Tim Cullen | Updated: 2010-12-20 | Comments (2) | Related: > Spatial Data Storage
Problem
The company I work with has migrated most of its geospatial data to SQL Server 2008's new spatial data types. During the course of a recent conversation the initialism GML was used a number of times. I'm not sure what it is, but it sounds like some type of markup language, particularly since they were mentioning data transfer and consumption in the same context. How close was my guess?
Solution
The answer is that you were right. GML stands for Geography Markup Language and is a standard adopted by both the Open Geospatial Consortium and International Organization for Standardization (ISO). It is an XML format and, as with any XML document, serves as a standard method of data transfer for the particular institution or discipline for which it was developed. As such it has a schema which describes the document and the instance document that houses the actual data. A number of GML Application Schemas have been developed for industries, but that doesn't preclude an organization from creating their own schema. You and your clients should decide which GML Application Schema best suits your needs so that there is no confusion. GML is commonly used in applications that utilize spatial data.
All SQL Server 2008 instances support the use of GML. GML functions, like many of the other functions in the spatial data family, are derived as .NET CLR functions.
There are only a few functions that are used to work with GML in SQL Server 2008:
Function | Description |
[FIELD].AsGml() | Returns the GML equivalent of a geometric or geographic instance |
GeomFromGml | Returns the Well-Known Binary Representation of a geometric or geographic instance |
AsGml() Examples |
Geometry Instance DECLARE @GEO GEOMETRY SELECT @GEO = GEOMETRY::STGeomFromText ('POLYGON ((0 0, 0 1560, 1100 1560, 1100 0, 0 0))', 0) SELECT @GEO.AsGml()Result <Polygon xmlns="http://www.opengis.net/gml"> <exterior> <LinearRing> <posList>0 0 0 1560 1100 1560 1100 0 0 0</posList> </LinearRing> </exterior> </Polygon> Geography Instance DECLARE @GEOG GEOGRAPHY SELECT @GEOG = geography::STGeomFromText('POINT(-84.3 33.88)', 4326) SELECT @GEOG.AsGml()Result <Point xmlns="http://www.opengis.net/gml"> <pos>33.88 -84.3</pos> </Point> |
GeomFromGml() Examples |
Geometry Instance DECLARE @GeoString XML SELECT @GeoString = '<Polygon xmlns="http://www.opengis.net/gml"> <exterior> <LinearRing> <posList>0 0 0 1560 1100 1560 1100 0 0 0</posList> </LinearRing> </exterior> </Polygon>' SELECT Geometry::GeomFromGml(@GeoString, 0)Result Returns Well-Known Binary Representation Geography Instance DECLARE @GeoString XML SELECT @GeoString = '<Point xmlns="http://www.opengis.net/gml"> <pos>17.117 -61.783</pos> </Point>' SELECT Geometry::GeomFromGml(@GeoString, 4326)Result Returns Well-Known Binary Representation |
One thing to note is that there is some performance penalty when executing a query using the GML functions. In the example below I queried a table that houses geographic information on zip codes in the United States (about 43200 records). The estimated execution plan is essentially the same when querying with and without the AsGml(); however, there is a substantial performance hit when querying the table including the AsGml() function:
Next Steps
- Remember that the spatial functions are .NET CLR functions and are case-sensitive
- Review information and download documentation on the OpenGIS Geography Markup Language Encoding Standard
- Read about the GeomFromGml() function for geometry and geography instances
- Read about the AsGml() function for geometry and geography instances
About the author
This author pledges the content of this article is based on professional experience and not AI generated.
View all my tips
Article Last Updated: 2010-12-20