Round decimal number

Is it possible to round a number like 2555.550055 to 2555.55 ?

Haven’t found a real round function, but you may get lucky with this decimal calculation script and specify the decimal point place.
-Chris

I figured out a way to do it using a nested :find inside a :pick (its not actually rounding it though)

    :local rawLat "3820.0410"
    :local rawLon "-12242.2638"

    :local latDecimalPosition [:pick $rawLat -1 ([:find $rawLat "." -2]+3) ]
    :local lonDecimalPosition [:pick $rawLon -1 ([:find $rawLon "." -2]+3) ]

:log info ("$latDecimalPosition"."N/$lonDecimalPosition"."W" )