vote up 1 vote down star

Sql Server 2008 supports spatial data with new geometry and geography UDT's. They both support AsGml() method to serialize data in gml format. However they serialize data into GML3 format. Is there any way to tell it to serialize data into GML2 format?

flag

57% accept rate

2 Answers

vote up 0 vote down check

As Marko said, there is no support for gml2 in Sql Server 2008, so I just ended up writing a function for transforming gml3 returned by the server to gml2 that I needed.

link|flag
vote up 0 vote down

There is no support for GML2, but there is extensibility API that can be used to implement custom serialization.

Here is an example of custom serialization using SqlGeometry.Populate(IGeometrySink) method (C# code):

CustomWriter w = new CustomWriter();
SqlGeometry.Parse("POLYGON ((0 0, 10 0, 10 10, 0 10, 0 0))").Populate(w);
System.Console.WriteLine(w);

public class CustomWriter : IGeometrySink {
    private StringBuilder _builder = new StringBuilder();

    public string ToString() {
    	return _builder.ToString();
    }

    public void SetSrid(int srid) {
    	_builder.Append('@');
    	_builder.Append(srid);
    }

    public void BeginGeometry(OpenGisGeometryType type) {
    	_builder.Append(" (");
    	_builder.Append(type);
    }

    public void BeginFigure(double x, double y, double? z, double? m) {
    	_builder.Append(" [");
    	_builder.Append(x);
    	_builder.Append(' ');
    	_builder.Append(y);
    }

    public void AddLine(double x, double y, double? z, double? m) {
    	_builder.Append(',');
    	_builder.Append(x);
    	_builder.Append(' ');
    	_builder.Append(y);
    }

    public void EndFigure() {
    	_builder.Append(']');
    }

    public void EndGeometry() {
    	_builder.Append(')');
    }
}

To do deserialization use SqlGeometryBuilder class:

// Create "POLYGON ((0 0, 10 0, 10 10, 0 10, 0 0))" using Builder API
SqlGeometryBuilder b = new SqlGeometryBuilder();
b.SetSrid(0);
b.BeginGeometry(OpenGisGeometryType.Polygon);
    b.BeginFigure(0, 0);
    b.AddLine(10, 0);
    b.AddLine(10, 10);
    b.AddLine(0, 10);
    b.AddLine(0, 0);
    b.EndFigure();
b.EndGeometry();
SqlGeometry g = b.ConstructedGeometry;
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.