├── .Rbuildignore ├── .gitignore ├── .travis.yml ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── data.R ├── decorations.R ├── icons.R ├── processanimateR.R ├── renderer.R ├── scale.R └── token_aes.R ├── README.md ├── data └── example_log.rda ├── docs ├── 404.html ├── LICENSE-text.html ├── LICENSE.html ├── articles │ ├── index.html │ ├── use-external-data-to-change-tokens.html │ ├── use-external-data-to-change-tokens_files │ │ ├── d3-5.7.0 │ │ │ └── d3-custom.min.js │ │ ├── es6-promise-4.2.5 │ │ │ └── es6-promise.auto.min.js │ │ ├── fakesmil-0.3.0 │ │ │ └── smil.user.js │ │ ├── hammerjs-2.0.8 │ │ │ ├── LICENSE │ │ │ └── hammer.min.js │ │ ├── header-attrs-2.11 │ │ │ └── header-attrs.js │ │ ├── htmlwidgets-1.3 │ │ │ └── htmlwidgets.js │ │ ├── htmlwidgets-1.5.1 │ │ │ └── htmlwidgets.js │ │ ├── htmlwidgets-1.5.4 │ │ │ └── htmlwidgets.js │ │ ├── leaflet-1.5.1 │ │ │ ├── images │ │ │ │ ├── layers-2x.png │ │ │ │ ├── layers.png │ │ │ │ ├── marker-icon-2x.png │ │ │ │ ├── marker-icon.png │ │ │ │ └── marker-shadow.png │ │ │ ├── leaflet-grayscale.css │ │ │ ├── leaflet.css │ │ │ └── leaflet.min.js │ │ ├── leaflet-d3-svg-overlay-2.2 │ │ │ └── leaflet-d3-svg-overlay.js │ │ ├── momentjs-0.2.22.1 │ │ │ └── moment.min.js │ │ ├── processanimateR-binding-1.0.1 │ │ │ └── processanimateR.js │ │ ├── processanimateR-binding-1.0.2 │ │ │ └── processanimateR.js │ │ ├── processanimateR-binding-1.0.3 │ │ │ └── processanimateR.js │ │ ├── processanimateR-binding-1.0.4 │ │ │ └── processanimateR.js │ │ ├── processanimateR-binding-1.0.5 │ │ │ └── processanimateR.js │ │ ├── processanimater-libs-1.0.0 │ │ │ ├── animation_playback_control.js │ │ │ ├── animation_renderer_graphviz.js │ │ │ ├── animation_renderer_leaflet.js │ │ │ ├── animation_scales.js │ │ │ └── animation_tokens.js │ │ ├── processanimater-libs-1.0.3 │ │ │ ├── animation_playback_control.js │ │ │ ├── animation_renderer_graphviz.js │ │ │ ├── animation_renderer_leaflet.js │ │ │ ├── animation_scales.js │ │ │ └── animation_tokens.js │ │ ├── svg-pan-zoom-3.6.0 │ │ │ └── svg-pan-zoom.min.js │ │ └── viz.js-2.1.2 │ │ │ ├── full.render.js │ │ │ └── viz.js │ ├── use-shiny-selections.html │ ├── use-shiny-selections_files │ │ └── header-attrs-2.11 │ │ │ └── header-attrs.js │ ├── use-timestamp-change-token-aes.html │ ├── use-timestamp-change-token-aes_files │ │ ├── d3-5.7.0 │ │ │ └── d3-custom.min.js │ │ ├── es6-promise-4.2.5 │ │ │ └── es6-promise.auto.min.js │ │ ├── fakesmil-0.3.0 │ │ │ └── smil.user.js │ │ ├── hammerjs-2.0.8 │ │ │ ├── LICENSE │ │ │ └── hammer.min.js │ │ ├── header-attrs-2.11 │ │ │ └── header-attrs.js │ │ ├── htmlwidgets-1.3 │ │ │ └── htmlwidgets.js │ │ ├── htmlwidgets-1.5.1 │ │ │ └── htmlwidgets.js │ │ ├── htmlwidgets-1.5.4 │ │ │ └── htmlwidgets.js │ │ ├── leaflet-1.5.1 │ │ │ ├── images │ │ │ │ ├── layers-2x.png │ │ │ │ ├── layers.png │ │ │ │ ├── marker-icon-2x.png │ │ │ │ ├── marker-icon.png │ │ │ │ └── marker-shadow.png │ │ │ ├── leaflet-grayscale.css │ │ │ ├── leaflet.css │ │ │ └── leaflet.min.js │ │ ├── leaflet-d3-svg-overlay-2.2 │ │ │ └── leaflet-d3-svg-overlay.js │ │ ├── momentjs-0.2.22.1 │ │ │ └── moment.min.js │ │ ├── processanimateR-binding-1.0.1 │ │ │ └── processanimateR.js │ │ ├── processanimateR-binding-1.0.2 │ │ │ └── processanimateR.js │ │ ├── processanimateR-binding-1.0.3 │ │ │ └── processanimateR.js │ │ ├── processanimateR-binding-1.0.4 │ │ │ └── processanimateR.js │ │ ├── processanimateR-binding-1.0.5 │ │ │ └── processanimateR.js │ │ ├── processanimater-libs-1.0.0 │ │ │ ├── animation_playback_control.js │ │ │ ├── animation_renderer_graphviz.js │ │ │ ├── animation_renderer_leaflet.js │ │ │ ├── animation_scales.js │ │ │ └── animation_tokens.js │ │ ├── processanimater-libs-1.0.3 │ │ │ ├── animation_playback_control.js │ │ │ ├── animation_renderer_graphviz.js │ │ │ ├── animation_renderer_leaflet.js │ │ │ ├── animation_scales.js │ │ │ └── animation_tokens.js │ │ ├── svg-pan-zoom-3.6.0 │ │ │ └── svg-pan-zoom.min.js │ │ └── viz.js-2.1.2 │ │ │ ├── full.render.js │ │ │ └── viz.js │ ├── use-token_scales.html │ ├── use-token_scales_files │ │ ├── d3-5.7.0 │ │ │ └── d3-custom.min.js │ │ ├── es6-promise-4.2.5 │ │ │ └── es6-promise.auto.min.js │ │ ├── fakesmil-0.3.0 │ │ │ └── smil.user.js │ │ ├── hammerjs-2.0.8 │ │ │ ├── LICENSE │ │ │ └── hammer.min.js │ │ ├── header-attrs-2.11 │ │ │ └── header-attrs.js │ │ ├── htmlwidgets-1.3 │ │ │ └── htmlwidgets.js │ │ ├── htmlwidgets-1.5.1 │ │ │ └── htmlwidgets.js │ │ ├── htmlwidgets-1.5.4 │ │ │ └── htmlwidgets.js │ │ ├── leaflet-1.5.1 │ │ │ ├── images │ │ │ │ ├── layers-2x.png │ │ │ │ ├── layers.png │ │ │ │ ├── marker-icon-2x.png │ │ │ │ ├── marker-icon.png │ │ │ │ └── marker-shadow.png │ │ │ ├── leaflet-grayscale.css │ │ │ ├── leaflet.css │ │ │ └── leaflet.min.js │ │ ├── leaflet-d3-svg-overlay-2.2 │ │ │ └── leaflet-d3-svg-overlay.js │ │ ├── momentjs-0.2.22.1 │ │ │ └── moment.min.js │ │ ├── processanimateR-binding-1.0.1 │ │ │ └── processanimateR.js │ │ ├── processanimateR-binding-1.0.2 │ │ │ └── processanimateR.js │ │ ├── processanimateR-binding-1.0.3 │ │ │ └── processanimateR.js │ │ ├── processanimateR-binding-1.0.4 │ │ │ └── processanimateR.js │ │ ├── processanimateR-binding-1.0.5 │ │ │ └── processanimateR.js │ │ ├── processanimater-libs-1.0.0 │ │ │ ├── animation_playback_control.js │ │ │ ├── animation_renderer_graphviz.js │ │ │ ├── animation_renderer_leaflet.js │ │ │ ├── animation_scales.js │ │ │ └── animation_tokens.js │ │ ├── processanimater-libs-1.0.3 │ │ │ ├── animation_playback_control.js │ │ │ ├── animation_renderer_graphviz.js │ │ │ ├── animation_renderer_leaflet.js │ │ │ ├── animation_scales.js │ │ │ └── animation_tokens.js │ │ ├── svg-pan-zoom-3.6.0 │ │ │ └── svg-pan-zoom.min.js │ │ └── viz.js-2.1.2 │ │ │ ├── full.render.js │ │ │ └── viz.js │ ├── use-with-shiny.html │ └── use-with-shiny_files │ │ └── header-attrs-2.11 │ │ └── header-attrs.js ├── authors.html ├── bootstrap-toc.css ├── bootstrap-toc.js ├── docsearch.css ├── docsearch.js ├── example │ └── processanimateR-banner.html ├── index.html ├── jquery.sticky-kit.min.js ├── link.svg ├── news │ └── index.html ├── pkgdown.css ├── pkgdown.js ├── pkgdown.yml ├── reference │ ├── Rplot001.png │ ├── activity_select_decoration.html │ ├── add_token_color.html │ ├── add_token_size.html │ ├── animate_process.html │ ├── attribution_osm.html │ ├── example_log.html │ ├── figures │ │ └── processanimateR-banner.png │ ├── ianimate_process.html │ ├── icon_circle.html │ ├── icon_marker.html │ ├── index.html │ ├── libs │ │ ├── d3-5.7.0 │ │ │ └── d3-custom.min.js │ │ ├── es6-promise-4.2.5 │ │ │ └── es6-promise.auto.min.js │ │ ├── fakesmil-0.3.0 │ │ │ └── smil.user.js │ │ ├── hammerjs-2.0.8 │ │ │ ├── LICENSE │ │ │ └── hammer.min.js │ │ ├── htmlwidgets-1.5.4 │ │ │ └── htmlwidgets.js │ │ ├── leaflet-1.5.1 │ │ │ ├── images │ │ │ │ ├── layers-2x.png │ │ │ │ ├── layers.png │ │ │ │ ├── marker-icon-2x.png │ │ │ │ ├── marker-icon.png │ │ │ │ └── marker-shadow.png │ │ │ ├── leaflet-grayscale.css │ │ │ ├── leaflet.css │ │ │ └── leaflet.min.js │ │ ├── leaflet-d3-svg-overlay-2.2 │ │ │ └── leaflet-d3-svg-overlay.js │ │ ├── momentjs-0.2.22.1 │ │ │ └── moment.min.js │ │ ├── processanimateR-binding-1.0.5 │ │ │ └── processanimateR.js │ │ ├── processanimater-libs-1.0.3 │ │ │ ├── animation_playback_control.js │ │ │ ├── animation_renderer_graphviz.js │ │ │ ├── animation_renderer_leaflet.js │ │ │ ├── animation_scales.js │ │ │ └── animation_tokens.js │ │ ├── svg-pan-zoom-3.6.0 │ │ │ └── svg-pan-zoom.min.js │ │ └── viz.js-2.1.2 │ │ │ ├── full.render.js │ │ │ └── viz.js │ ├── processanimaterOutput.html │ ├── renderProcessanimater.html │ ├── renderer_graphviz.html │ ├── renderer_leaflet.html │ ├── token_aes.html │ ├── token_scale.html │ └── token_select_decoration.html └── sitemap.xml ├── inst └── htmlwidgets │ ├── lib │ ├── d3 │ │ ├── LICENSE.D3 │ │ ├── LICENSE.D3-SIMPLE-SLIDER │ │ ├── d3-custom.min.js │ │ ├── index.js │ │ ├── package-lock.json │ │ ├── package.json │ │ └── rollup.config.js │ ├── es6-promise │ │ └── es6-promise.auto.min.js │ ├── fakesmil │ │ ├── LICENSE │ │ └── smil.user.js │ ├── hammerjs │ │ ├── LICENSE │ │ └── hammer.min.js │ ├── leaflet-d3-svg-overlay │ │ ├── LICENSE │ │ └── leaflet-d3-svg-overlay.js │ ├── leaflet │ │ ├── images │ │ │ ├── layers-2x.png │ │ │ ├── layers.png │ │ │ ├── marker-icon-2x.png │ │ │ ├── marker-icon.png │ │ │ └── marker-shadow.png │ │ ├── index.js │ │ ├── leaflet-grayscale.css │ │ ├── leaflet.css │ │ ├── leaflet.min.js │ │ ├── package-lock.json │ │ ├── package.json │ │ └── rollup.config.js │ ├── modules │ │ ├── animation_playback_control.js │ │ ├── animation_renderer_graphviz.js │ │ ├── animation_renderer_leaflet.js │ │ ├── animation_scales.js │ │ └── animation_tokens.js │ ├── momentjs │ │ ├── LICENSE │ │ └── moment.min.js │ ├── svg-pan-zoom │ │ ├── LICENSE │ │ └── svg-pan-zoom.min.js │ └── viz │ │ ├── LICENSE │ │ ├── full.render.js │ │ └── viz.js │ ├── processanimateR.js │ └── processanimateR.yaml ├── man ├── activity_select_decoration.Rd ├── animate_process.Rd ├── attribution_osm.Rd ├── example_log.Rd ├── figures │ └── processanimateR-banner.png ├── icon_circle.Rd ├── icon_marker.Rd ├── processanimaterOutput.Rd ├── renderProcessanimater.Rd ├── renderer_graphviz.Rd ├── renderer_leaflet.Rd ├── token_aes.Rd ├── token_scale.Rd └── token_select_decoration.Rd ├── processanimateR.Rproj └── vignettes ├── .gitignore ├── use-external-data-to-change-tokens.Rmd ├── use-shiny-selections.Rmd ├── use-timestamp-change-token-aes.Rmd ├── use-token_scales.Rmd └── use-with-shiny.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/.travis.yml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2018 2 | COPYRIGHT HOLDER: Felix Mannhardt 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/R/data.R -------------------------------------------------------------------------------- /R/decorations.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/R/decorations.R -------------------------------------------------------------------------------- /R/icons.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/R/icons.R -------------------------------------------------------------------------------- /R/processanimateR.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/R/processanimateR.R -------------------------------------------------------------------------------- /R/renderer.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/R/renderer.R -------------------------------------------------------------------------------- /R/scale.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/R/scale.R -------------------------------------------------------------------------------- /R/token_aes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/R/token_aes.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/README.md -------------------------------------------------------------------------------- /data/example_log.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/data/example_log.rda -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/LICENSE-text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/LICENSE-text.html -------------------------------------------------------------------------------- /docs/LICENSE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/LICENSE.html -------------------------------------------------------------------------------- /docs/articles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/index.html -------------------------------------------------------------------------------- /docs/articles/use-external-data-to-change-tokens.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-external-data-to-change-tokens.html -------------------------------------------------------------------------------- /docs/articles/use-external-data-to-change-tokens_files/d3-5.7.0/d3-custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-external-data-to-change-tokens_files/d3-5.7.0/d3-custom.min.js -------------------------------------------------------------------------------- /docs/articles/use-external-data-to-change-tokens_files/es6-promise-4.2.5/es6-promise.auto.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-external-data-to-change-tokens_files/es6-promise-4.2.5/es6-promise.auto.min.js -------------------------------------------------------------------------------- /docs/articles/use-external-data-to-change-tokens_files/fakesmil-0.3.0/smil.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-external-data-to-change-tokens_files/fakesmil-0.3.0/smil.user.js -------------------------------------------------------------------------------- /docs/articles/use-external-data-to-change-tokens_files/hammerjs-2.0.8/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-external-data-to-change-tokens_files/hammerjs-2.0.8/LICENSE -------------------------------------------------------------------------------- /docs/articles/use-external-data-to-change-tokens_files/hammerjs-2.0.8/hammer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-external-data-to-change-tokens_files/hammerjs-2.0.8/hammer.min.js -------------------------------------------------------------------------------- /docs/articles/use-external-data-to-change-tokens_files/header-attrs-2.11/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-external-data-to-change-tokens_files/header-attrs-2.11/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/use-external-data-to-change-tokens_files/htmlwidgets-1.3/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-external-data-to-change-tokens_files/htmlwidgets-1.3/htmlwidgets.js -------------------------------------------------------------------------------- /docs/articles/use-external-data-to-change-tokens_files/htmlwidgets-1.5.1/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-external-data-to-change-tokens_files/htmlwidgets-1.5.1/htmlwidgets.js -------------------------------------------------------------------------------- /docs/articles/use-external-data-to-change-tokens_files/htmlwidgets-1.5.4/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-external-data-to-change-tokens_files/htmlwidgets-1.5.4/htmlwidgets.js -------------------------------------------------------------------------------- /docs/articles/use-external-data-to-change-tokens_files/leaflet-1.5.1/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-external-data-to-change-tokens_files/leaflet-1.5.1/images/layers-2x.png -------------------------------------------------------------------------------- /docs/articles/use-external-data-to-change-tokens_files/leaflet-1.5.1/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-external-data-to-change-tokens_files/leaflet-1.5.1/images/layers.png -------------------------------------------------------------------------------- /docs/articles/use-external-data-to-change-tokens_files/leaflet-1.5.1/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-external-data-to-change-tokens_files/leaflet-1.5.1/images/marker-icon-2x.png -------------------------------------------------------------------------------- /docs/articles/use-external-data-to-change-tokens_files/leaflet-1.5.1/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-external-data-to-change-tokens_files/leaflet-1.5.1/images/marker-icon.png -------------------------------------------------------------------------------- /docs/articles/use-external-data-to-change-tokens_files/leaflet-1.5.1/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-external-data-to-change-tokens_files/leaflet-1.5.1/images/marker-shadow.png -------------------------------------------------------------------------------- /docs/articles/use-external-data-to-change-tokens_files/leaflet-1.5.1/leaflet-grayscale.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-external-data-to-change-tokens_files/leaflet-1.5.1/leaflet-grayscale.css -------------------------------------------------------------------------------- /docs/articles/use-external-data-to-change-tokens_files/leaflet-1.5.1/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-external-data-to-change-tokens_files/leaflet-1.5.1/leaflet.css -------------------------------------------------------------------------------- /docs/articles/use-external-data-to-change-tokens_files/leaflet-1.5.1/leaflet.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-external-data-to-change-tokens_files/leaflet-1.5.1/leaflet.min.js -------------------------------------------------------------------------------- /docs/articles/use-external-data-to-change-tokens_files/leaflet-d3-svg-overlay-2.2/leaflet-d3-svg-overlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-external-data-to-change-tokens_files/leaflet-d3-svg-overlay-2.2/leaflet-d3-svg-overlay.js -------------------------------------------------------------------------------- /docs/articles/use-external-data-to-change-tokens_files/momentjs-0.2.22.1/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-external-data-to-change-tokens_files/momentjs-0.2.22.1/moment.min.js -------------------------------------------------------------------------------- /docs/articles/use-external-data-to-change-tokens_files/processanimateR-binding-1.0.1/processanimateR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-external-data-to-change-tokens_files/processanimateR-binding-1.0.1/processanimateR.js -------------------------------------------------------------------------------- /docs/articles/use-external-data-to-change-tokens_files/processanimateR-binding-1.0.2/processanimateR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-external-data-to-change-tokens_files/processanimateR-binding-1.0.2/processanimateR.js -------------------------------------------------------------------------------- /docs/articles/use-external-data-to-change-tokens_files/processanimateR-binding-1.0.3/processanimateR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-external-data-to-change-tokens_files/processanimateR-binding-1.0.3/processanimateR.js -------------------------------------------------------------------------------- /docs/articles/use-external-data-to-change-tokens_files/processanimateR-binding-1.0.4/processanimateR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-external-data-to-change-tokens_files/processanimateR-binding-1.0.4/processanimateR.js -------------------------------------------------------------------------------- /docs/articles/use-external-data-to-change-tokens_files/processanimateR-binding-1.0.5/processanimateR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-external-data-to-change-tokens_files/processanimateR-binding-1.0.5/processanimateR.js -------------------------------------------------------------------------------- /docs/articles/use-external-data-to-change-tokens_files/processanimater-libs-1.0.0/animation_playback_control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-external-data-to-change-tokens_files/processanimater-libs-1.0.0/animation_playback_control.js -------------------------------------------------------------------------------- /docs/articles/use-external-data-to-change-tokens_files/processanimater-libs-1.0.0/animation_renderer_graphviz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-external-data-to-change-tokens_files/processanimater-libs-1.0.0/animation_renderer_graphviz.js -------------------------------------------------------------------------------- /docs/articles/use-external-data-to-change-tokens_files/processanimater-libs-1.0.0/animation_renderer_leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-external-data-to-change-tokens_files/processanimater-libs-1.0.0/animation_renderer_leaflet.js -------------------------------------------------------------------------------- /docs/articles/use-external-data-to-change-tokens_files/processanimater-libs-1.0.0/animation_scales.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-external-data-to-change-tokens_files/processanimater-libs-1.0.0/animation_scales.js -------------------------------------------------------------------------------- /docs/articles/use-external-data-to-change-tokens_files/processanimater-libs-1.0.0/animation_tokens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-external-data-to-change-tokens_files/processanimater-libs-1.0.0/animation_tokens.js -------------------------------------------------------------------------------- /docs/articles/use-external-data-to-change-tokens_files/processanimater-libs-1.0.3/animation_playback_control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-external-data-to-change-tokens_files/processanimater-libs-1.0.3/animation_playback_control.js -------------------------------------------------------------------------------- /docs/articles/use-external-data-to-change-tokens_files/processanimater-libs-1.0.3/animation_renderer_graphviz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-external-data-to-change-tokens_files/processanimater-libs-1.0.3/animation_renderer_graphviz.js -------------------------------------------------------------------------------- /docs/articles/use-external-data-to-change-tokens_files/processanimater-libs-1.0.3/animation_renderer_leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-external-data-to-change-tokens_files/processanimater-libs-1.0.3/animation_renderer_leaflet.js -------------------------------------------------------------------------------- /docs/articles/use-external-data-to-change-tokens_files/processanimater-libs-1.0.3/animation_scales.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-external-data-to-change-tokens_files/processanimater-libs-1.0.3/animation_scales.js -------------------------------------------------------------------------------- /docs/articles/use-external-data-to-change-tokens_files/processanimater-libs-1.0.3/animation_tokens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-external-data-to-change-tokens_files/processanimater-libs-1.0.3/animation_tokens.js -------------------------------------------------------------------------------- /docs/articles/use-external-data-to-change-tokens_files/svg-pan-zoom-3.6.0/svg-pan-zoom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-external-data-to-change-tokens_files/svg-pan-zoom-3.6.0/svg-pan-zoom.min.js -------------------------------------------------------------------------------- /docs/articles/use-external-data-to-change-tokens_files/viz.js-2.1.2/full.render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-external-data-to-change-tokens_files/viz.js-2.1.2/full.render.js -------------------------------------------------------------------------------- /docs/articles/use-external-data-to-change-tokens_files/viz.js-2.1.2/viz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-external-data-to-change-tokens_files/viz.js-2.1.2/viz.js -------------------------------------------------------------------------------- /docs/articles/use-shiny-selections.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-shiny-selections.html -------------------------------------------------------------------------------- /docs/articles/use-shiny-selections_files/header-attrs-2.11/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-shiny-selections_files/header-attrs-2.11/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/use-timestamp-change-token-aes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-timestamp-change-token-aes.html -------------------------------------------------------------------------------- /docs/articles/use-timestamp-change-token-aes_files/d3-5.7.0/d3-custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-timestamp-change-token-aes_files/d3-5.7.0/d3-custom.min.js -------------------------------------------------------------------------------- /docs/articles/use-timestamp-change-token-aes_files/es6-promise-4.2.5/es6-promise.auto.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-timestamp-change-token-aes_files/es6-promise-4.2.5/es6-promise.auto.min.js -------------------------------------------------------------------------------- /docs/articles/use-timestamp-change-token-aes_files/fakesmil-0.3.0/smil.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-timestamp-change-token-aes_files/fakesmil-0.3.0/smil.user.js -------------------------------------------------------------------------------- /docs/articles/use-timestamp-change-token-aes_files/hammerjs-2.0.8/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-timestamp-change-token-aes_files/hammerjs-2.0.8/LICENSE -------------------------------------------------------------------------------- /docs/articles/use-timestamp-change-token-aes_files/hammerjs-2.0.8/hammer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-timestamp-change-token-aes_files/hammerjs-2.0.8/hammer.min.js -------------------------------------------------------------------------------- /docs/articles/use-timestamp-change-token-aes_files/header-attrs-2.11/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-timestamp-change-token-aes_files/header-attrs-2.11/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/use-timestamp-change-token-aes_files/htmlwidgets-1.3/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-timestamp-change-token-aes_files/htmlwidgets-1.3/htmlwidgets.js -------------------------------------------------------------------------------- /docs/articles/use-timestamp-change-token-aes_files/htmlwidgets-1.5.1/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-timestamp-change-token-aes_files/htmlwidgets-1.5.1/htmlwidgets.js -------------------------------------------------------------------------------- /docs/articles/use-timestamp-change-token-aes_files/htmlwidgets-1.5.4/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-timestamp-change-token-aes_files/htmlwidgets-1.5.4/htmlwidgets.js -------------------------------------------------------------------------------- /docs/articles/use-timestamp-change-token-aes_files/leaflet-1.5.1/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-timestamp-change-token-aes_files/leaflet-1.5.1/images/layers-2x.png -------------------------------------------------------------------------------- /docs/articles/use-timestamp-change-token-aes_files/leaflet-1.5.1/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-timestamp-change-token-aes_files/leaflet-1.5.1/images/layers.png -------------------------------------------------------------------------------- /docs/articles/use-timestamp-change-token-aes_files/leaflet-1.5.1/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-timestamp-change-token-aes_files/leaflet-1.5.1/images/marker-icon-2x.png -------------------------------------------------------------------------------- /docs/articles/use-timestamp-change-token-aes_files/leaflet-1.5.1/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-timestamp-change-token-aes_files/leaflet-1.5.1/images/marker-icon.png -------------------------------------------------------------------------------- /docs/articles/use-timestamp-change-token-aes_files/leaflet-1.5.1/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-timestamp-change-token-aes_files/leaflet-1.5.1/images/marker-shadow.png -------------------------------------------------------------------------------- /docs/articles/use-timestamp-change-token-aes_files/leaflet-1.5.1/leaflet-grayscale.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-timestamp-change-token-aes_files/leaflet-1.5.1/leaflet-grayscale.css -------------------------------------------------------------------------------- /docs/articles/use-timestamp-change-token-aes_files/leaflet-1.5.1/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-timestamp-change-token-aes_files/leaflet-1.5.1/leaflet.css -------------------------------------------------------------------------------- /docs/articles/use-timestamp-change-token-aes_files/leaflet-1.5.1/leaflet.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-timestamp-change-token-aes_files/leaflet-1.5.1/leaflet.min.js -------------------------------------------------------------------------------- /docs/articles/use-timestamp-change-token-aes_files/leaflet-d3-svg-overlay-2.2/leaflet-d3-svg-overlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-timestamp-change-token-aes_files/leaflet-d3-svg-overlay-2.2/leaflet-d3-svg-overlay.js -------------------------------------------------------------------------------- /docs/articles/use-timestamp-change-token-aes_files/momentjs-0.2.22.1/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-timestamp-change-token-aes_files/momentjs-0.2.22.1/moment.min.js -------------------------------------------------------------------------------- /docs/articles/use-timestamp-change-token-aes_files/processanimateR-binding-1.0.1/processanimateR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-timestamp-change-token-aes_files/processanimateR-binding-1.0.1/processanimateR.js -------------------------------------------------------------------------------- /docs/articles/use-timestamp-change-token-aes_files/processanimateR-binding-1.0.2/processanimateR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-timestamp-change-token-aes_files/processanimateR-binding-1.0.2/processanimateR.js -------------------------------------------------------------------------------- /docs/articles/use-timestamp-change-token-aes_files/processanimateR-binding-1.0.3/processanimateR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-timestamp-change-token-aes_files/processanimateR-binding-1.0.3/processanimateR.js -------------------------------------------------------------------------------- /docs/articles/use-timestamp-change-token-aes_files/processanimateR-binding-1.0.4/processanimateR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-timestamp-change-token-aes_files/processanimateR-binding-1.0.4/processanimateR.js -------------------------------------------------------------------------------- /docs/articles/use-timestamp-change-token-aes_files/processanimateR-binding-1.0.5/processanimateR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-timestamp-change-token-aes_files/processanimateR-binding-1.0.5/processanimateR.js -------------------------------------------------------------------------------- /docs/articles/use-timestamp-change-token-aes_files/processanimater-libs-1.0.0/animation_playback_control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-timestamp-change-token-aes_files/processanimater-libs-1.0.0/animation_playback_control.js -------------------------------------------------------------------------------- /docs/articles/use-timestamp-change-token-aes_files/processanimater-libs-1.0.0/animation_renderer_graphviz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-timestamp-change-token-aes_files/processanimater-libs-1.0.0/animation_renderer_graphviz.js -------------------------------------------------------------------------------- /docs/articles/use-timestamp-change-token-aes_files/processanimater-libs-1.0.0/animation_renderer_leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-timestamp-change-token-aes_files/processanimater-libs-1.0.0/animation_renderer_leaflet.js -------------------------------------------------------------------------------- /docs/articles/use-timestamp-change-token-aes_files/processanimater-libs-1.0.0/animation_scales.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-timestamp-change-token-aes_files/processanimater-libs-1.0.0/animation_scales.js -------------------------------------------------------------------------------- /docs/articles/use-timestamp-change-token-aes_files/processanimater-libs-1.0.0/animation_tokens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-timestamp-change-token-aes_files/processanimater-libs-1.0.0/animation_tokens.js -------------------------------------------------------------------------------- /docs/articles/use-timestamp-change-token-aes_files/processanimater-libs-1.0.3/animation_playback_control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-timestamp-change-token-aes_files/processanimater-libs-1.0.3/animation_playback_control.js -------------------------------------------------------------------------------- /docs/articles/use-timestamp-change-token-aes_files/processanimater-libs-1.0.3/animation_renderer_graphviz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-timestamp-change-token-aes_files/processanimater-libs-1.0.3/animation_renderer_graphviz.js -------------------------------------------------------------------------------- /docs/articles/use-timestamp-change-token-aes_files/processanimater-libs-1.0.3/animation_renderer_leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-timestamp-change-token-aes_files/processanimater-libs-1.0.3/animation_renderer_leaflet.js -------------------------------------------------------------------------------- /docs/articles/use-timestamp-change-token-aes_files/processanimater-libs-1.0.3/animation_scales.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-timestamp-change-token-aes_files/processanimater-libs-1.0.3/animation_scales.js -------------------------------------------------------------------------------- /docs/articles/use-timestamp-change-token-aes_files/processanimater-libs-1.0.3/animation_tokens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-timestamp-change-token-aes_files/processanimater-libs-1.0.3/animation_tokens.js -------------------------------------------------------------------------------- /docs/articles/use-timestamp-change-token-aes_files/svg-pan-zoom-3.6.0/svg-pan-zoom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-timestamp-change-token-aes_files/svg-pan-zoom-3.6.0/svg-pan-zoom.min.js -------------------------------------------------------------------------------- /docs/articles/use-timestamp-change-token-aes_files/viz.js-2.1.2/full.render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-timestamp-change-token-aes_files/viz.js-2.1.2/full.render.js -------------------------------------------------------------------------------- /docs/articles/use-timestamp-change-token-aes_files/viz.js-2.1.2/viz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-timestamp-change-token-aes_files/viz.js-2.1.2/viz.js -------------------------------------------------------------------------------- /docs/articles/use-token_scales.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-token_scales.html -------------------------------------------------------------------------------- /docs/articles/use-token_scales_files/d3-5.7.0/d3-custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-token_scales_files/d3-5.7.0/d3-custom.min.js -------------------------------------------------------------------------------- /docs/articles/use-token_scales_files/es6-promise-4.2.5/es6-promise.auto.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-token_scales_files/es6-promise-4.2.5/es6-promise.auto.min.js -------------------------------------------------------------------------------- /docs/articles/use-token_scales_files/fakesmil-0.3.0/smil.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-token_scales_files/fakesmil-0.3.0/smil.user.js -------------------------------------------------------------------------------- /docs/articles/use-token_scales_files/hammerjs-2.0.8/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-token_scales_files/hammerjs-2.0.8/LICENSE -------------------------------------------------------------------------------- /docs/articles/use-token_scales_files/hammerjs-2.0.8/hammer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-token_scales_files/hammerjs-2.0.8/hammer.min.js -------------------------------------------------------------------------------- /docs/articles/use-token_scales_files/header-attrs-2.11/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-token_scales_files/header-attrs-2.11/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/use-token_scales_files/htmlwidgets-1.3/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-token_scales_files/htmlwidgets-1.3/htmlwidgets.js -------------------------------------------------------------------------------- /docs/articles/use-token_scales_files/htmlwidgets-1.5.1/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-token_scales_files/htmlwidgets-1.5.1/htmlwidgets.js -------------------------------------------------------------------------------- /docs/articles/use-token_scales_files/htmlwidgets-1.5.4/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-token_scales_files/htmlwidgets-1.5.4/htmlwidgets.js -------------------------------------------------------------------------------- /docs/articles/use-token_scales_files/leaflet-1.5.1/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-token_scales_files/leaflet-1.5.1/images/layers-2x.png -------------------------------------------------------------------------------- /docs/articles/use-token_scales_files/leaflet-1.5.1/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-token_scales_files/leaflet-1.5.1/images/layers.png -------------------------------------------------------------------------------- /docs/articles/use-token_scales_files/leaflet-1.5.1/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-token_scales_files/leaflet-1.5.1/images/marker-icon-2x.png -------------------------------------------------------------------------------- /docs/articles/use-token_scales_files/leaflet-1.5.1/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-token_scales_files/leaflet-1.5.1/images/marker-icon.png -------------------------------------------------------------------------------- /docs/articles/use-token_scales_files/leaflet-1.5.1/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-token_scales_files/leaflet-1.5.1/images/marker-shadow.png -------------------------------------------------------------------------------- /docs/articles/use-token_scales_files/leaflet-1.5.1/leaflet-grayscale.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-token_scales_files/leaflet-1.5.1/leaflet-grayscale.css -------------------------------------------------------------------------------- /docs/articles/use-token_scales_files/leaflet-1.5.1/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-token_scales_files/leaflet-1.5.1/leaflet.css -------------------------------------------------------------------------------- /docs/articles/use-token_scales_files/leaflet-1.5.1/leaflet.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-token_scales_files/leaflet-1.5.1/leaflet.min.js -------------------------------------------------------------------------------- /docs/articles/use-token_scales_files/leaflet-d3-svg-overlay-2.2/leaflet-d3-svg-overlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-token_scales_files/leaflet-d3-svg-overlay-2.2/leaflet-d3-svg-overlay.js -------------------------------------------------------------------------------- /docs/articles/use-token_scales_files/momentjs-0.2.22.1/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-token_scales_files/momentjs-0.2.22.1/moment.min.js -------------------------------------------------------------------------------- /docs/articles/use-token_scales_files/processanimateR-binding-1.0.1/processanimateR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-token_scales_files/processanimateR-binding-1.0.1/processanimateR.js -------------------------------------------------------------------------------- /docs/articles/use-token_scales_files/processanimateR-binding-1.0.2/processanimateR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-token_scales_files/processanimateR-binding-1.0.2/processanimateR.js -------------------------------------------------------------------------------- /docs/articles/use-token_scales_files/processanimateR-binding-1.0.3/processanimateR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-token_scales_files/processanimateR-binding-1.0.3/processanimateR.js -------------------------------------------------------------------------------- /docs/articles/use-token_scales_files/processanimateR-binding-1.0.4/processanimateR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-token_scales_files/processanimateR-binding-1.0.4/processanimateR.js -------------------------------------------------------------------------------- /docs/articles/use-token_scales_files/processanimateR-binding-1.0.5/processanimateR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-token_scales_files/processanimateR-binding-1.0.5/processanimateR.js -------------------------------------------------------------------------------- /docs/articles/use-token_scales_files/processanimater-libs-1.0.0/animation_playback_control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-token_scales_files/processanimater-libs-1.0.0/animation_playback_control.js -------------------------------------------------------------------------------- /docs/articles/use-token_scales_files/processanimater-libs-1.0.0/animation_renderer_graphviz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-token_scales_files/processanimater-libs-1.0.0/animation_renderer_graphviz.js -------------------------------------------------------------------------------- /docs/articles/use-token_scales_files/processanimater-libs-1.0.0/animation_renderer_leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-token_scales_files/processanimater-libs-1.0.0/animation_renderer_leaflet.js -------------------------------------------------------------------------------- /docs/articles/use-token_scales_files/processanimater-libs-1.0.0/animation_scales.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-token_scales_files/processanimater-libs-1.0.0/animation_scales.js -------------------------------------------------------------------------------- /docs/articles/use-token_scales_files/processanimater-libs-1.0.0/animation_tokens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-token_scales_files/processanimater-libs-1.0.0/animation_tokens.js -------------------------------------------------------------------------------- /docs/articles/use-token_scales_files/processanimater-libs-1.0.3/animation_playback_control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-token_scales_files/processanimater-libs-1.0.3/animation_playback_control.js -------------------------------------------------------------------------------- /docs/articles/use-token_scales_files/processanimater-libs-1.0.3/animation_renderer_graphviz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-token_scales_files/processanimater-libs-1.0.3/animation_renderer_graphviz.js -------------------------------------------------------------------------------- /docs/articles/use-token_scales_files/processanimater-libs-1.0.3/animation_renderer_leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-token_scales_files/processanimater-libs-1.0.3/animation_renderer_leaflet.js -------------------------------------------------------------------------------- /docs/articles/use-token_scales_files/processanimater-libs-1.0.3/animation_scales.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-token_scales_files/processanimater-libs-1.0.3/animation_scales.js -------------------------------------------------------------------------------- /docs/articles/use-token_scales_files/processanimater-libs-1.0.3/animation_tokens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-token_scales_files/processanimater-libs-1.0.3/animation_tokens.js -------------------------------------------------------------------------------- /docs/articles/use-token_scales_files/svg-pan-zoom-3.6.0/svg-pan-zoom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-token_scales_files/svg-pan-zoom-3.6.0/svg-pan-zoom.min.js -------------------------------------------------------------------------------- /docs/articles/use-token_scales_files/viz.js-2.1.2/full.render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-token_scales_files/viz.js-2.1.2/full.render.js -------------------------------------------------------------------------------- /docs/articles/use-token_scales_files/viz.js-2.1.2/viz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-token_scales_files/viz.js-2.1.2/viz.js -------------------------------------------------------------------------------- /docs/articles/use-with-shiny.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-with-shiny.html -------------------------------------------------------------------------------- /docs/articles/use-with-shiny_files/header-attrs-2.11/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/articles/use-with-shiny_files/header-attrs-2.11/header-attrs.js -------------------------------------------------------------------------------- /docs/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/authors.html -------------------------------------------------------------------------------- /docs/bootstrap-toc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/bootstrap-toc.css -------------------------------------------------------------------------------- /docs/bootstrap-toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/bootstrap-toc.js -------------------------------------------------------------------------------- /docs/docsearch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/docsearch.css -------------------------------------------------------------------------------- /docs/docsearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/docsearch.js -------------------------------------------------------------------------------- /docs/example/processanimateR-banner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/example/processanimateR-banner.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/jquery.sticky-kit.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/jquery.sticky-kit.min.js -------------------------------------------------------------------------------- /docs/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/link.svg -------------------------------------------------------------------------------- /docs/news/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/news/index.html -------------------------------------------------------------------------------- /docs/pkgdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/pkgdown.css -------------------------------------------------------------------------------- /docs/pkgdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/pkgdown.js -------------------------------------------------------------------------------- /docs/pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/pkgdown.yml -------------------------------------------------------------------------------- /docs/reference/Rplot001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/reference/Rplot001.png -------------------------------------------------------------------------------- /docs/reference/activity_select_decoration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/reference/activity_select_decoration.html -------------------------------------------------------------------------------- /docs/reference/add_token_color.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/reference/add_token_color.html -------------------------------------------------------------------------------- /docs/reference/add_token_size.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/reference/add_token_size.html -------------------------------------------------------------------------------- /docs/reference/animate_process.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/reference/animate_process.html -------------------------------------------------------------------------------- /docs/reference/attribution_osm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/reference/attribution_osm.html -------------------------------------------------------------------------------- /docs/reference/example_log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/reference/example_log.html -------------------------------------------------------------------------------- /docs/reference/figures/processanimateR-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/reference/figures/processanimateR-banner.png -------------------------------------------------------------------------------- /docs/reference/ianimate_process.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/reference/ianimate_process.html -------------------------------------------------------------------------------- /docs/reference/icon_circle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/reference/icon_circle.html -------------------------------------------------------------------------------- /docs/reference/icon_marker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/reference/icon_marker.html -------------------------------------------------------------------------------- /docs/reference/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/reference/index.html -------------------------------------------------------------------------------- /docs/reference/libs/d3-5.7.0/d3-custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/reference/libs/d3-5.7.0/d3-custom.min.js -------------------------------------------------------------------------------- /docs/reference/libs/es6-promise-4.2.5/es6-promise.auto.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/reference/libs/es6-promise-4.2.5/es6-promise.auto.min.js -------------------------------------------------------------------------------- /docs/reference/libs/fakesmil-0.3.0/smil.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/reference/libs/fakesmil-0.3.0/smil.user.js -------------------------------------------------------------------------------- /docs/reference/libs/hammerjs-2.0.8/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/reference/libs/hammerjs-2.0.8/LICENSE -------------------------------------------------------------------------------- /docs/reference/libs/hammerjs-2.0.8/hammer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/reference/libs/hammerjs-2.0.8/hammer.min.js -------------------------------------------------------------------------------- /docs/reference/libs/htmlwidgets-1.5.4/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/reference/libs/htmlwidgets-1.5.4/htmlwidgets.js -------------------------------------------------------------------------------- /docs/reference/libs/leaflet-1.5.1/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/reference/libs/leaflet-1.5.1/images/layers-2x.png -------------------------------------------------------------------------------- /docs/reference/libs/leaflet-1.5.1/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/reference/libs/leaflet-1.5.1/images/layers.png -------------------------------------------------------------------------------- /docs/reference/libs/leaflet-1.5.1/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/reference/libs/leaflet-1.5.1/images/marker-icon-2x.png -------------------------------------------------------------------------------- /docs/reference/libs/leaflet-1.5.1/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/reference/libs/leaflet-1.5.1/images/marker-icon.png -------------------------------------------------------------------------------- /docs/reference/libs/leaflet-1.5.1/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/reference/libs/leaflet-1.5.1/images/marker-shadow.png -------------------------------------------------------------------------------- /docs/reference/libs/leaflet-1.5.1/leaflet-grayscale.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/reference/libs/leaflet-1.5.1/leaflet-grayscale.css -------------------------------------------------------------------------------- /docs/reference/libs/leaflet-1.5.1/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/reference/libs/leaflet-1.5.1/leaflet.css -------------------------------------------------------------------------------- /docs/reference/libs/leaflet-1.5.1/leaflet.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/reference/libs/leaflet-1.5.1/leaflet.min.js -------------------------------------------------------------------------------- /docs/reference/libs/leaflet-d3-svg-overlay-2.2/leaflet-d3-svg-overlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/reference/libs/leaflet-d3-svg-overlay-2.2/leaflet-d3-svg-overlay.js -------------------------------------------------------------------------------- /docs/reference/libs/momentjs-0.2.22.1/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/reference/libs/momentjs-0.2.22.1/moment.min.js -------------------------------------------------------------------------------- /docs/reference/libs/processanimateR-binding-1.0.5/processanimateR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/reference/libs/processanimateR-binding-1.0.5/processanimateR.js -------------------------------------------------------------------------------- /docs/reference/libs/processanimater-libs-1.0.3/animation_playback_control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/reference/libs/processanimater-libs-1.0.3/animation_playback_control.js -------------------------------------------------------------------------------- /docs/reference/libs/processanimater-libs-1.0.3/animation_renderer_graphviz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/reference/libs/processanimater-libs-1.0.3/animation_renderer_graphviz.js -------------------------------------------------------------------------------- /docs/reference/libs/processanimater-libs-1.0.3/animation_renderer_leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/reference/libs/processanimater-libs-1.0.3/animation_renderer_leaflet.js -------------------------------------------------------------------------------- /docs/reference/libs/processanimater-libs-1.0.3/animation_scales.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/reference/libs/processanimater-libs-1.0.3/animation_scales.js -------------------------------------------------------------------------------- /docs/reference/libs/processanimater-libs-1.0.3/animation_tokens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/reference/libs/processanimater-libs-1.0.3/animation_tokens.js -------------------------------------------------------------------------------- /docs/reference/libs/svg-pan-zoom-3.6.0/svg-pan-zoom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/reference/libs/svg-pan-zoom-3.6.0/svg-pan-zoom.min.js -------------------------------------------------------------------------------- /docs/reference/libs/viz.js-2.1.2/full.render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/reference/libs/viz.js-2.1.2/full.render.js -------------------------------------------------------------------------------- /docs/reference/libs/viz.js-2.1.2/viz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/reference/libs/viz.js-2.1.2/viz.js -------------------------------------------------------------------------------- /docs/reference/processanimaterOutput.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/reference/processanimaterOutput.html -------------------------------------------------------------------------------- /docs/reference/renderProcessanimater.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/reference/renderProcessanimater.html -------------------------------------------------------------------------------- /docs/reference/renderer_graphviz.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/reference/renderer_graphviz.html -------------------------------------------------------------------------------- /docs/reference/renderer_leaflet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/reference/renderer_leaflet.html -------------------------------------------------------------------------------- /docs/reference/token_aes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/reference/token_aes.html -------------------------------------------------------------------------------- /docs/reference/token_scale.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/reference/token_scale.html -------------------------------------------------------------------------------- /docs/reference/token_select_decoration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/reference/token_select_decoration.html -------------------------------------------------------------------------------- /docs/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/docs/sitemap.xml -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/d3/LICENSE.D3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/inst/htmlwidgets/lib/d3/LICENSE.D3 -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/d3/LICENSE.D3-SIMPLE-SLIDER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/inst/htmlwidgets/lib/d3/LICENSE.D3-SIMPLE-SLIDER -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/d3/d3-custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/inst/htmlwidgets/lib/d3/d3-custom.min.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/d3/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/inst/htmlwidgets/lib/d3/index.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/d3/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/inst/htmlwidgets/lib/d3/package-lock.json -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/d3/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/inst/htmlwidgets/lib/d3/package.json -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/d3/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/inst/htmlwidgets/lib/d3/rollup.config.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/es6-promise/es6-promise.auto.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/inst/htmlwidgets/lib/es6-promise/es6-promise.auto.min.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/fakesmil/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/inst/htmlwidgets/lib/fakesmil/LICENSE -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/fakesmil/smil.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/inst/htmlwidgets/lib/fakesmil/smil.user.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/hammerjs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/inst/htmlwidgets/lib/hammerjs/LICENSE -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/hammerjs/hammer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/inst/htmlwidgets/lib/hammerjs/hammer.min.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/leaflet-d3-svg-overlay/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/inst/htmlwidgets/lib/leaflet-d3-svg-overlay/LICENSE -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/leaflet-d3-svg-overlay/leaflet-d3-svg-overlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/inst/htmlwidgets/lib/leaflet-d3-svg-overlay/leaflet-d3-svg-overlay.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/leaflet/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/inst/htmlwidgets/lib/leaflet/images/layers-2x.png -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/leaflet/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/inst/htmlwidgets/lib/leaflet/images/layers.png -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/leaflet/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/inst/htmlwidgets/lib/leaflet/images/marker-icon-2x.png -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/leaflet/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/inst/htmlwidgets/lib/leaflet/images/marker-icon.png -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/leaflet/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/inst/htmlwidgets/lib/leaflet/images/marker-shadow.png -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/leaflet/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/inst/htmlwidgets/lib/leaflet/index.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/leaflet/leaflet-grayscale.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/inst/htmlwidgets/lib/leaflet/leaflet-grayscale.css -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/leaflet/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/inst/htmlwidgets/lib/leaflet/leaflet.css -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/leaflet/leaflet.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/inst/htmlwidgets/lib/leaflet/leaflet.min.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/leaflet/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/inst/htmlwidgets/lib/leaflet/package-lock.json -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/leaflet/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/inst/htmlwidgets/lib/leaflet/package.json -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/leaflet/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/inst/htmlwidgets/lib/leaflet/rollup.config.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/modules/animation_playback_control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/inst/htmlwidgets/lib/modules/animation_playback_control.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/modules/animation_renderer_graphviz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/inst/htmlwidgets/lib/modules/animation_renderer_graphviz.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/modules/animation_renderer_leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/inst/htmlwidgets/lib/modules/animation_renderer_leaflet.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/modules/animation_scales.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/inst/htmlwidgets/lib/modules/animation_scales.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/modules/animation_tokens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/inst/htmlwidgets/lib/modules/animation_tokens.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/momentjs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/inst/htmlwidgets/lib/momentjs/LICENSE -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/momentjs/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/inst/htmlwidgets/lib/momentjs/moment.min.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/svg-pan-zoom/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/inst/htmlwidgets/lib/svg-pan-zoom/LICENSE -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/svg-pan-zoom/svg-pan-zoom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/inst/htmlwidgets/lib/svg-pan-zoom/svg-pan-zoom.min.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/viz/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/inst/htmlwidgets/lib/viz/LICENSE -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/viz/full.render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/inst/htmlwidgets/lib/viz/full.render.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/viz/viz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/inst/htmlwidgets/lib/viz/viz.js -------------------------------------------------------------------------------- /inst/htmlwidgets/processanimateR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/inst/htmlwidgets/processanimateR.js -------------------------------------------------------------------------------- /inst/htmlwidgets/processanimateR.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/inst/htmlwidgets/processanimateR.yaml -------------------------------------------------------------------------------- /man/activity_select_decoration.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/man/activity_select_decoration.Rd -------------------------------------------------------------------------------- /man/animate_process.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/man/animate_process.Rd -------------------------------------------------------------------------------- /man/attribution_osm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/man/attribution_osm.Rd -------------------------------------------------------------------------------- /man/example_log.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/man/example_log.Rd -------------------------------------------------------------------------------- /man/figures/processanimateR-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/man/figures/processanimateR-banner.png -------------------------------------------------------------------------------- /man/icon_circle.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/man/icon_circle.Rd -------------------------------------------------------------------------------- /man/icon_marker.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/man/icon_marker.Rd -------------------------------------------------------------------------------- /man/processanimaterOutput.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/man/processanimaterOutput.Rd -------------------------------------------------------------------------------- /man/renderProcessanimater.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/man/renderProcessanimater.Rd -------------------------------------------------------------------------------- /man/renderer_graphviz.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/man/renderer_graphviz.Rd -------------------------------------------------------------------------------- /man/renderer_leaflet.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/man/renderer_leaflet.Rd -------------------------------------------------------------------------------- /man/token_aes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/man/token_aes.Rd -------------------------------------------------------------------------------- /man/token_scale.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/man/token_scale.Rd -------------------------------------------------------------------------------- /man/token_select_decoration.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/man/token_select_decoration.Rd -------------------------------------------------------------------------------- /processanimateR.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/processanimateR.Rproj -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/use-external-data-to-change-tokens.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/vignettes/use-external-data-to-change-tokens.Rmd -------------------------------------------------------------------------------- /vignettes/use-shiny-selections.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/vignettes/use-shiny-selections.Rmd -------------------------------------------------------------------------------- /vignettes/use-timestamp-change-token-aes.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/vignettes/use-timestamp-change-token-aes.Rmd -------------------------------------------------------------------------------- /vignettes/use-token_scales.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/vignettes/use-token_scales.Rmd -------------------------------------------------------------------------------- /vignettes/use-with-shiny.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bupaverse/processanimateR/HEAD/vignettes/use-with-shiny.Rmd --------------------------------------------------------------------------------