Nothing
#' Interpolate point on polygon
#' @param x a numeric vector sorted in increasing order (x coordinates)
#' @param y a numeric vector associated with x (y coordinates)
#' @param x3 a numeric value, in the range of x. y coordinate will be obtained
#' for this x coordiante by linear interpolation.
#' @author Liudas Daumantas
#' @noRd
.y.online <- function(x,y,x3) {
ind<-.binar_search(x,x3)
if (x[ind[2]] == x3 ){
if (x[ind[2]+1] == x3){
return(y[which.min(c(abs(y[ind[2]+1]),abs(ind[2])))])
}
return(y[ind[2]])
}
y[ind[1]]+(x3-x[ind[1]])*(y[ind[2]]-y[ind[1]])/(x[ind[2]]-x[ind[1]])
}
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.