Nothing
#' Transform coordinates to accommodate anisotropy
#'
#' @param rotate The rotate value (between 0 and pi radians)
#' @param scale The scale value for the minor axis (between 0 and 1)
#' @param xcoord_val The x-coordinate value (Euclidean isotropic)
#' @param ycoord_val The y-coordinate value (Euclidean isotropic)
#'
#' @return New coordinates
#'
#' @noRd
transform_anis <- function(data, xcoord, ycoord, rotate, scale) {
rotate_clockwise <- matrix(c(cos(rotate), sin(rotate), -sin(rotate), cos(rotate)), nrow = 2, ncol = 2, byrow = TRUE)
scale_yaxis <- matrix(c(1, 0, 0, 1 / scale), nrow = 2, ncol = 2, byrow = TRUE)
coords <- rbind(data[[xcoord]], data[[ycoord]])
new_coords <- (scale_yaxis %*% rotate_clockwise) %*% coords
list(xcoord_val = new_coords[1, ], ycoord_val = new_coords[2, ])
}
#' The inverse of transforming coordiantes to accommodate anisotropy
#'
#' @return new coordinates
#'
#' @noRd
transform_anis_inv <- function(data, xcoord, ycoord, rotate, scale) {
rotate_clockwise_inv <- matrix(c(cos(rotate), -sin(rotate), sin(rotate), cos(rotate)), nrow = 2, ncol = 2, byrow = TRUE)
scale_yaxis_inv <- matrix(c(1, 0, 0, scale), nrow = 2, ncol = 2, byrow = TRUE)
coords <- rbind(data[[xcoord]], data[[ycoord]])
new_coords <- (rotate_clockwise_inv %*% scale_yaxis_inv) %*% coords
list(xcoord_val = new_coords[1, ], ycoord_val = new_coords[2, ])
}
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.