Nothing
.packageName<-"argosfilter"
`distanceTrack` <-
function(lat, lon)
{
distanceTrack<-numeric(length(lat)-1)
for (k in 1:(length(lat)-1)){
lat1<-lat[k]
lat2<-lat[k+1]
lon1<-lon[k]
lon2<-lon[k+1]
distanceTrack[k]<-distance(lat1,lat2,lon1,lon2)
}
distanceTrack
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.