GeomFromGML (tipo di dati geography)
Costruisce un'istanza geography data una rappresentazione nel subset SQL Server di Geography Markup Language (GML).
Per ulteriori informazioni su Geography Markup Language (GML), vedere le seguenti specifiche Open Geospatial Consortium: OGC Specifications, Geography Markup Language (informazioni in lingua inglese).
Sintassi
GeomFromGml ( GML_input, SRID )
Argomenti
GML_input
Input XML dal quale GML restituirà un valore.SRID
Espressione int che rappresenta l'identificatore SRID dell'istanza geography da restituire.
Tipi restituiti
SQL Server - tipo restituito: geography
Tipo CLR restituito: SqlGeography
Osservazioni
Questo metodo genera un'eccezione FormatException se l'input non è formattato in modo corretto.
Esempi
Nell'esempio seguente viene utilizzato il metodo GeomFromGml() per creare un'istanza geography.
DECLARE @g geography;
DECLARE @x xml;
SET @x = '<LineString xmlns="http://www.opengis.net/gml"><posList>47.656 -122.36 47.656 -122.343</posList></LineString>';
SET @g = geography::GeomFromGml(@x, 4326);
SELECT @g.ToString();