Nothing
#' Break Children in a Node into a Group or Siblings
#'
#' This function applies to the last two parent nodes in SVG file. Each child node in the input parent node is checked for combined path. The function \code{\link{path_br}} is used to break the combined paths.
#' @param node.parent An object of class "xml_node" with children, i.e. one of the last two nodes in SVG file, outline and tissue layer respectively.
#' @return Nothing is returned. The broken paths are updated in the root.
#' @author Jianhai Zhang \email{jzhan067@@ucr.edu; zhang.jianhai@@hotmail.com} \cr Dr. Thomas Girke \email{thomas.girke@@ucr.edu}
#' @noRd
#' @references
#' Hadley Wickham, Jim Hester and Jeroen Ooms (2019). xml2: Parse XML. R package version 1.2.2. https://CRAN.R-project.org/package=xml2
#' @importFrom xml2 xml_length xml_children xml_name xml_attr
path_br_all <- function(node.parent) {
len <- xml_length(node.parent); chdn <- xml_children(node.parent)
for (i in seq_len(len)) {
nod0 <- chdn[[i]]; na <- xml_name(nod0)
if (na=='a') next
if (na!='g') path_br(nod0, g=TRUE) else {
nod0.chl <- xml_children(nod0); nas <- xml_name(nod0.chl)
if ('g' %in% nas) return(paste0('Nested group detected in ', xml_attr(nod0, 'id'), '!'))
if ('use' %in% nas) return(paste0('use node detected in ', xml_attr(nod0, 'id'), '!'))
for (j in seq_along(nod0.chl)) {
nod1 <- nod0.chl[[j]]; if (xml_name(nod1)=='a') next
path_br(nod1, g=FALSE)
}
}
}
}
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.