Hi FME experts,
I have stored polygon objects in an Oracle database. The geometry is in the GEOM field. For an interface, I have to convert the GEOM field into a text field. The GEOM field looks like this:
select geom from VIEW_RIWE_2016_BORIS where fid = 70118
sdo_geometry(2003,25832,null,sdo_elem_info_array(1,1003,1),sdo_ordinate_array(510843.904449149,5369878.15541307,510782.847025386,5369803.95356616,510757.074323074,5369773.29550141,510804.270134531,5369734.73477362,510819.559582734,5369752.69084497,510863.309430839,5369806.93171413,510890.267651986,5369838.63447086,510843.904449149,5369878.15541307))
The TEXT field must later look like this:
POLYGON ((32563549.456 5934230.837,32563553.002 5934219.989,32563552.58 5934219.778,32563542.348 5934220.82,32563537.637 5934221.725,32563533.431 5934221.663,32563522.282 5934224.668,32563543.799 5934230.72,32563549.027 5934230.188,32563549.456 5934230.837))
With a bit of text editing, I could easily edit the field. My problem now is that the SQL Creator does not display the text from the SQL as an attribute, but only as a graphic object. Although I could read the geometry with CoordinateExtractor, I would have to put it together again correctly.
Is there a way to read the complete GEOM as a simple attribute?
Many thanks in advance.