Hi I have a table with about 5 million rows. I need to populate an attribute in the table using an external
HTTP service, which expects a json parameter built using attributes from same table. The response is also in json format
Expected input json:
[
{"id":0,"x":320000,"y":290000}
{"id":1,"x":345000,"y":310000}
{"id":2,"x":410000,"y":300000}
]
Expected Output:
>
{"id":0,"z":45.0009}
{"id":1,"x":12.236633}
{"id":2,"z":24.9987}
]
Any suggestion what would be the best way to do this using FME?