I have a GML in WGS84 coordinate system (EPSG:4326). The GML contains CircleByCenterPoint element, which has its radius set in kilometers. However, if I open the file with Universal Viewer, FME interprets the radius in degrees of latitude/longitude and the circle is therefore extremely huge.
I would appreciate a suggestion how to convince FME to take the units of measure into account. Thanks
Example:
<gml:patches>
<gml:PolygonPatch interpolation="planar">
<gml:exterior>
<gml:Ring>
<gml:curveMember xlink:type="simple">
<gml:Curve>
<gml:segments>
<gml:CircleByCenterPoint interpolation="circularArcCenterPointWithRadius" numArc="1">
<gml:pos>47.36388888888889 17.500555555555554</gml:pos>
<gml:radius uom="KM">10</gml:radius>
</gml:CircleByCenterPoint>
</gml:segments>
</gml:Curve>
</gml:curveMember>
</gml:Ring>
</gml:exterior>
</gml:PolygonPatch>
</gml:patches>