Solved

how do i process all AGOL features at once instead of one by one?

  • 22 December 2020
  • 1 reply
  • 1 view

new to FME so i apologize for the elementary question, but is there a way for me to bring in all features within a feature service at once so that i can process them with a python caller? i need to run counts and reference external csv files on the data and i can't do it properly without having all of the records.

 

for example, if i wanted to send an email that contained a list of all employee names within a feature layer, how would i do that? currently its sending an email for every employee within the feature layer (100 employees = 100 emails) i need 1 email that contains 100 employee names.

icon

Best answer by markatsafe 23 December 2020, 19:11

View original

1 reply

Badge +2

@wmunsell​  You need to 'aggregate' the data. Two good transformers for this are the StatisticsCalculator and the Aggregator. Probably the Aggregator for the example you've given above.

Reply