{"id":13735675,"url":"https://github.com/crazycapivara/deckgl","last_synced_at":"2026-03-02T09:02:47.018Z","repository":{"id":39174477,"uuid":"145043708","full_name":"crazycapivara/deckgl","owner":"crazycapivara","description":"An R Interface to deck.gl","archived":false,"fork":false,"pushed_at":"2024-02-05T15:20:41.000Z","size":8663,"stargazers_count":97,"open_issues_count":64,"forks_count":10,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-12-09T15:15:40.140Z","etag":null,"topics":["deck-gl","htmlwidgets","mapbox-gl","maps","r","rspatial","spatial","webgl"],"latest_commit_sha":null,"homepage":"https://crazycapivara.github.io/deckgl/","language":"R","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/crazycapivara.png","metadata":{"files":{"readme":"README.Rmd","changelog":"NEWS.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-08-16T22:07:48.000Z","updated_at":"2025-10-06T09:25:11.000Z","dependencies_parsed_at":"2024-11-15T04:40:41.286Z","dependency_job_id":null,"html_url":"https://github.com/crazycapivara/deckgl","commit_stats":{"total_commits":736,"total_committers":2,"mean_commits":368.0,"dds":"0.0013586956521739468","last_synced_commit":"1741c8bc84d69e26694d670879911a0d2bb2c5c2"},"previous_names":[],"tags_count":21,"template":false,"template_full_name":null,"purl":"pkg:github/crazycapivara/deckgl","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crazycapivara%2Fdeckgl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crazycapivara%2Fdeckgl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crazycapivara%2Fdeckgl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crazycapivara%2Fdeckgl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/crazycapivara","download_url":"https://codeload.github.com/crazycapivara/deckgl/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crazycapivara%2Fdeckgl/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29996278,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-02T01:47:34.672Z","status":"online","status_checked_at":"2026-03-02T02:00:07.342Z","response_time":60,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["deck-gl","htmlwidgets","mapbox-gl","maps","r","rspatial","spatial","webgl"],"created_at":"2024-08-03T03:01:09.652Z","updated_at":"2026-03-02T09:02:46.988Z","avatar_url":"https://github.com/crazycapivara.png","language":"R","readme":"---\noutput: github_document\n---\n\n\u003c!-- README.md is generated from README.Rmd. Please edit that file --\u003e\n\n```{r, include = FALSE}\nknitr::opts_chunk$set(\n  collapse = TRUE,\n  comment = \"#\u003e\",\n  fig.path = \"README-\"\n)\nlibrary(deckgl)\n```\n\n# r-deckgl: An R Interface to deck.gl\n\n[![CRAN_Status_Badge](https://www.r-pkg.org/badges/version/deckgl)](https://cran.r-project.org/package=deckgl) [![github_status_badge](https://img.shields.io/badge/github-v0.3.0-blue.svg)](https://github.com/crazycapivara/deckgl/releases/latest) [![Travis-CI Build Status](https://travis-ci.org/crazycapivara/deckgl.svg?branch=master)](https://travis-ci.org/crazycapivara/deckgl) [![Project Status: Active – The project has reached a stable, usable state and is being actively developed.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active)\n[![deck.gl Version](https://img.shields.io/badge/deck.gl-v8.1.9-blue.svg)](https://github.com/visgl/deck.gl/releases/tag/v8.1.9)\n\nThe r-deckgl package makes the open-source JavaScript library [deck.gl](https://deck.gl/) available within R via the [htmlwidgets](https://www.htmlwidgets.org/) package.\n\n![vancouver-blocks](man/figures/README-vancouver-blocks.png)\n\n## Installation\n\n```{r cran-installation, eval = FALSE}\ninstall.packages(\"deckgl\")\n```\n\nYou can install the latest version of r-deckgl from github with:\n\n```{r gh-installation, eval = FALSE}\n# install.packages(\"remotes\")\nremotes::install_github(\"crazycapivara/deckgl\")\n```\n\n```{r, child=\"vignettes/partials/_get-started\"}\n```\n\n## Development\n\nThe JavaScript library of r-deckgl uses [webpack](https://webpack.js.org/) as module bundler. Therefore, you need [node.js](https://nodejs.org) to build the module. All JavaScript code is located in the `javascript/src` folder and test components go to `javascript/src/test-components`.\n\nInstall deps and build the library from inside the `javascript` folder with:\n\n```bash\nnpm install\n\nnpm run build\n```\n\nTo spin up the [webpack-dev-server](https://github.com/webpack/webpack-dev-server) run:\n\n```bash\nnpm run start\n```\n\n## Documentation\n\n- [r-deckgl pkgdown Site](https://crazycapivara.github.io/deckgl/)\n- [Example Scripts](https://github.com/crazycapivara/deckgl/tree/master/_examples)\n- [deck.gl JavaScript API Reference](https://deck.gl/#/documentation/deckgl-api-reference)\n\n## Note\n\nIf the `deckgl` widget is not visible in the viewer pane of RStudio, just open it in your browser by clicking \"Show in new window\" and everything will be fine.\n","funding_links":[],"categories":["R","Visualization"],"sub_categories":["Maps and Spatial Data"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcrazycapivara%2Fdeckgl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcrazycapivara%2Fdeckgl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcrazycapivara%2Fdeckgl/lists"}