Hi there, can anyone help me mutate a string into a decimal-formatted number for geo-points?
For example, I have a CSV with fields containing: -115168598
....which needs to be: -115.168598
My first attempt just gave me -115:
ruby {code => "event.set('Ypos', event.get('Ypos')/1000000)"}
Thank you.