I need to generate Near Table between two point ArcSDE feature classes which are in WGS84. The ESRI's solution is
arcpy.GenerateNearTable_analysis(baseFC,candidateFC,NEAR_TABLE,"2500 Feet","","","ALL"). It gives NEAR_TABLE with 82 records. If I only want the "closest" candidates, I use this
arcpy.GenerateNearTable_analysis(baseFC,candidateFC,NEAR_TABLE,"2500 Feet","","","CLOSEST") which gives 26 records.
I think the nearest transformer to do this in FME is GeographicNeighborFinder. See below image. However, it gives 29 records. I assume it only searches the closest candidates. But why is it different than the 26 that ESRI "CLOEST" gives? Does FME has another transformer that does what
arcpy.GenerateNearTable_analysis(baseFC,candidateFC,NEAR_TABLE,"2500 Feet","","","ALL") does?