I'm using the street-crimes method to feed in a lng/lat string and get all crimes inside the polygon the coords generate. https://data.police.uk/docs/method/crime-street/
This initial bit is working well so far.
The method outputs a single months data and what I want to do is get the httpfetcher transformer to send multiple requests to get several months worth of data. I don't mind it rerunning this each time as the police may update older crimes so getting updates would be fine.
My thought was that I could build a list with each month I want to request data for and feed that into the target url httpfetcher. I don't really know if that would work and I haven't really worked with lists yet so I'm not really sure how to create one.
Any thoughts on this approach and any tips on creating the list of months initially?