Can you please format all the configuration as code? See this thread for instructions (“Using three backticks at the start and end of the code”)
With current formatting the whitespace seems to be wrong, and it’s hard to tell what you have in the configurations.
Also, could you please share what kind of errors (if any) you receive in the logs?
There is a small issue with transformation, at least
instead of
return Math.round (parseFloat (i + 2730) * 10);
you should have
return Math.round ( (parseFloat (i) + 2730) * 10 );
(notice the difference in parentheses with parseFloat)
Best,
Sami