Displaying 1 result from an estimated 1 matches for "lon_v2".
Did you mean:
lon2
2011 Jul 01
0
How to filter XY pairs of inacurate gps position along track, taking into account the time index to not mix track from different days in one average track
...,Lat))
colnames(Raw)<-c('t_index','Lon','Lat')
plot(Raw$Lon,Raw$Lat,type="l",main = "lowess(cars)")
# data should be or filtared or ...?
#expected answer:
# ver 1 ------------------------------------------------------------------------------
#Raw$Lon_v2<- f_x (x=Raw$Lon, y=Raw$Lat)
#Raw$Lat_v2 <- f_y (x=Raw$Lon, y=Raw$Lat)
#lines(Raw$Lon_v2,Raw$Lat_v2,col=2)
# ver 2 ------------------------------------------------------------------------------
op <- par(mfrow = c(2,1), mgp = c(2,.8,0), mar = .1+c(3,3,3,1))
plot(Raw$Lon,Raw$L...