Â
Â
I'm trying to fix an approx 4000 geometry errors in polygons. FME only detects about 2000 using GeometryValidator set on all checks (and is able to repair ~1500), and Oracle shows another 2000 using . Now, showing the XY of the errors that are generated through the GeometryValidator is easy. However, showing the ones from Oracle is less easy, as shown below.ÂÂ
Â
The output from the Oracle Validation is as follows for an example set of records:Â
13349 1Element <1>] &Ring <1>]1Edge <1>]1Edge <1079>]Â
13356 >Element <1>] 1Coordinate <2>];Ring <1>]Â
13356 pElement <1>] ;Coordinate <8>]tRing <1>]Â
13356 /Element <1>] tCoordinate <10>]tRing <1>]Â
13356Â
Â
Now, I take it getting the right ring, the right edge is pretty hard (13349 error), but I do want to get the right coordinates (13356) where possible to show the XY in a shapefile so someone can fix the error manually.Â
Â
A CoordinateExtractor will help me with the Index option, but how do I get the Coordinate number out of the above set of records? Mind you, I believe there can be multiple Coordinates per record.Â
Â
Has anyone dealt with this before? Thanks in advance.Â