Changes between Version 5 and Version 6 of FDORfc66
- Timestamp:
- 04/24/13 13:12:00 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
FDORfc66
v5 v6 17 17 == Overview == 18 18 19 This proposal adds coordinate system transformation support when serialize XML using FdoXmlFeatureSerializer:: XmlSerialize(...).19 This proposal adds coordinate system transformation support when serialize XML using FdoXmlFeatureSerializer::!XmlSerialize(...). 20 20 21 21 == Motivation == 22 22 23 FdoXmlFeatureSerializer is used for serializing FDO features into XML, for example it can serialize FDO features into WFS GML format.23 !FdoXmlFeatureSerializer is used for serializing FDO features into XML, for example it can serialize FDO features into WFS GML format. 24 24 25 25 {{{ … … 27 27 FdoIFeatureReader* reader, 28 28 FdoXmlFeatureWriter* writer, 29 FdoXmlFeatureFlags* flags)29 FdoXmlFeatureFlags* flags) 30 30 }}} 31 31 … … 44 44 }}} 45 45 46 And FdoXmlFeatureFlags adopt this if the caller wants to do coordinate system transformation.46 And !FdoXmlFeatureFlags adopt this if the caller wants to do coordinate system transformation. 47 47 48 48 {{{ … … 55 55 This srs name and transform is called during FDO serializing XML. The default value is NULL, so if caller does not set it, it's ignored and work as before. 56 56 57 The caller can make a class inherit from FdoCoordinateSystemTransform and implement real CoordinateSystemTransform(...) function, set the instance toFdoXmlFeatureFlags, and the feature data is transformed.57 The caller can make a class inherit from !FdoCoordinateSystemTransform and implement real !CoordinateSystemTransform(...) function, set the instance to !FdoXmlFeatureFlags, and the feature data is transformed. 58 58 59 59 == Implications == … … 65 65 Add unit test in FDO to do pseudo coordinate system transformation. 66 66 67 Test in MapGuide to do real coordinate system transformation.67 Test in !MapGuide to do real coordinate system transformation. 68 68 69 69 == !Funding/Resources ==