Hello!
I have had some problems getting correct time in ArcGIS QuickCapture, i realised i didnt have the GPS function on then recreated with the GPS however, i noticed that for Fixtime i couldnt get the correct data in milliseconds using arcade. I want the data to be in HH:MM:SS.sss or in a format similar to stoppwatch if possible.
Using this function in arcade
var time = $feature["esrignss_fixdatetime"];
var formattedTime = Concatenate([Text(time, 'HH:mm:ss'), '.', Text(Millisecond(time))])
return formattedTime;
I keep getting the same milliseconds 295 for all the time data which is obviously wrong. Cant quick capture count the milliseconds? Did i write it wrong?
I used similar function for the Createddate when using the data without the GPS function and the milliseconds is correct but as said before the time isnt. Thank you for the help