Skip to main content

Reviewing CKAN extensions and listing the extensions that have been created / modified in the past three years/

Extension Last update URL
AGLS metadata extension for CKAN 9 Dec 2021 https://github.com/datagovau/ckanext-agls
Archive CKAN resources 27 Apr 2022 https://github.com/ckan/ckanext-archiver
CKAN plugin for the B2Find Service 21 Jul 2022 https://github.com/EUDAT-B2FIND/ckanext-b2find
Line, bar and pie charts for CKAN 20 Fed 2020 https://github.com/ckan/ckanext-basiccharts
Easy bulk access to CKAN datasets, on Windows, MacOS and Linux 19 Jun 2022 https://github.com/BioplatformsAustralia/ckanext-bulk
A stand-alone service to pack a given CKAN resource in a ZIP file and email the link to a user 13 jun 2022 https://github.com/NaturalHistoryMuseum/ckanext-ckanpackager
R client for CKAN RESTful API 20 Feb 2021 https://github.com/ropensci/ckanr
Multilingual metadata fields (validators, template snippets and ckanext-scheming support) 10 Aug 2022 https://github.com/ckan/ckanext-scheming
data 8 Aug 2022 https://github.com/GSA/ckanext-datajson
CKAN extension for graph views, with data processing moved to the backend 25 Apr 2022 https://github.com/NaturalHistoryMuseum/ckanext-graph
Remote harvesting extension for CKAN 11 Aug 2022 https://github.com/ckan/ckanext-harvest
CKAN extension for data 30 Aug 2022 https://github.com/NaturalHistoryMuseum/ckanext-nhm
Simple CMS (create web pages in CKAN) 5 Apr 2022 https://github.com/ckan/ckanext-pages
PDF viewer for CKAN >= 2 9 Apr 2022 https://github.com/ckan/ckanext-pdfview
CKAN extension that that allows to create protected datasets which can be accessed by a list of users included in an access list 18 Mar 2020 https://github.com/conwetlab/ckanext-privatedatasets
Create datastore tables for organizations and provide combined output 13 Jul 2022 https://github.com/open-data/ckanext-recombinant
Scheming- Easy, sharable custom CKAN schemas 10 Aug 2022 https://github.com/ckan/ckanext-scheming
Sitemap search engine support for CKAN 9 Jan 2021 https://github.com/kata-csc/ckanext-sitemap
Geospatial extension for CKAN 24 Aug 2022 https://github.com/ckan/ckanext-spatial
CKAN plugin to allow users with 'member' role within an organization to create/edit/delete their own datasets 9 Mar 2021 https://github.com/NaturalHistoryMuseum/ckanext-userdatasets
Interactive data visualizer 23 Apr 2021 https://github.com/keitaroinc/ckanext-visualize

 

Related articles

Andrew Fletcher29 Sep 2023
Installing CKAN from package on Ubuntu 20.04
 Install the CKAN packageBegin by cleaning up your server environment.  Do this by updating Ubuntu’s package index:sudo apt updateNow you can install the packages that CKAN requires (including ‘git’, which will allow you to install CKAN extensions):sudo apt install -y libpq5 redis-server...
Andrew Fletcher29 Sep 2023
Installing CKAN from source on Ubuntu 20.04
If you're planning to create extensions, generating CKAN from source is the preferred option.  However, even if you have installed from package, you can make adjustments to creating extensions. Set up your serverBegin by cleaning up your server environment.  Do this by updating...
Andrew Fletcher29 Sep 2023
CKAN adding an extension
CKAN extensions - adding to your installation Following the information on the CKAN siteUse the CKAN create command to create an empty extension:Activate your CKAN virtual environment, for example:. /usr/lib/ckan/default/bin/activateThen check your location iscd /usr/lib/ckan/default/srcSo you...