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?
|
feedback
|
|
AFAIK, there is no built-in feature to serialize geospatial data to GML 2.x. You need to use some third-party tools, implement a writer youserlf or, this suggestion may sound a bit strange, use PostGIS for this transition. PostGIS is alternative geospatial database, similar solution to SQL Server, but implementing de-/serialization for both formats: GML 2 and GML 3. What I'd suggest is to use PostGIS as an intermediate and translating storage.
It may sound strange to propose another geospatial database, but I'm sure it would work fairly smoothly and well. | |||
|
feedback
|
|
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):
To do deserialization use SqlGeometryBuilder class:
| |||
|
feedback
|
|
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. | |||
|
feedback
|
|
Well since you finished there is not much point but I would recommend putting geoserver in front of SQL Server. Geoserver has all the serialization code built in for almost any format you want, is easy cheezy to install, and works as advertised. http://docs.geoserver.org/2.0.x/en/user/services/wfs/outputformats.html | |||
|
feedback
|