ProcessAnnotationsData <- function(mydata){
mutate <- dplyr::mutate
row_number <- dplyr::row_number
`%>%` <- magrittr::`%>%`
dato <- mydata[[3]][[2]]$transactions$transaction
meta <<- dato$metadata
annotationrasters <<- dato$rasters
a0 <- dato$annotations
edf <- data.frame()
for (k in 1:nrow(a0)){
df0 <- a0[k,]$data %>% data.frame()
edf <- rbind(edf, df0)
}
annotations <<- edf %>%
mutate(rownum = row_number())
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.