Skip to content

Need hep for converting date data in POSIXct

3 messages · arun, laila

#
Hi,
I guess the error message:
Error en vmask(lat, lon,
time, vmax = 25) : objeto 'lat' no encontrado

says that you have not defined the object 'lat'.

time<-subset(Geo, select =date)
time[,1]<-? as.POSIXct(time[,1],format="%d/%m/%Y %H:%M")
location<- subset(Geo,select=c(lat.comp,long))
?time1<- time[,1]
?lat<- location[,1]
?long<- location[,2]
library(argosfilter)
?vmask(lat,long,time1,25)
#[1] "end_location" "end_location" "not"????????? "not"????????? "end_location"
#[6] "end_location"

A.K.