ctmm-initiative / ctmmweb

Web app for analyzing animal tracking data, built upon ctmm R package
http://biology.umd.edu/movement.html
GNU General Public License v3.0
30 stars 21 forks source link

<simpleError in as.POSIXlt.character(x, tz, ...): character string is not in a standard unambiguous format> #139

Closed edwinchiroodza closed 1 year ago

edwinchiroodza commented 1 year ago

im trying to upload a csv from my PC however i'm getting this error : <simpleError in as.POSIXlt.character(x, tz, ...): character string is not in a standard unambiguous format>

the date is in the format 1.23.22 and time is 12:56:00

I have attached the file for those who may wish to recreate the error

thank you

v5and6.csv

xhdong-umd commented 1 year ago

ctmmweb is using `ctmm::as.telemetry" in backend to import data.

> ctmm::as.telemetry("d:/v5and6.csv")
Error in as.POSIXlt.character(x, tz, ...) : 
  character string is not in a standard unambiguous format

Your date column is not a standard unambiguous date format. Please use or convert to standard ISO date format like YYYY-MM-DD YYYY/MM/DD.

edwinchiroodza commented 1 year ago

Thank you, changed the timestamp format, uploaded successfully