Andrew Fletcher published: 22 July 2022 (updated) 1 September 2022 2 minutes read
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 Fletcher
•
18 Aug 2023
How to set up password authentication with Nginx on Ubuntu 20.04
Goal: Restrict content access through username and password entry on an Nginx server.1: Apache Utilities PackageFirst, update your server’s package index:sudo apt updateCheck if the utilities package exists in your environment by executing the commanddpkg --get-selections | grep...
Andrew Fletcher
•
25 Aug 2022
CKAN templates base verses location of themed
Location of the base templates
cd /usr/lib/ckan/default/src/ckan/ckan/templates
Whereas as the location of the plugin that displays the new template
cd /usr/lib/ckan/default/src/ckanext-{project}/ckanext/{project}/templates
To alter the home main page, edit the
cd...
Andrew Fletcher
•
23 Aug 2022
CKAN adding an extension
CKAN extensions - adding to your installation
Following the information on the CKAN site
Use the CKAN create command to create an empty extension:
Activate your CKAN virtual environment, for example:
. /usr/lib/ckan/default/bin/activate
Then check your location is
cd...