Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gbv/coli-rich
Enrichment of PICA catalog records with subject indexing data from concordances
https://github.com/gbv/coli-rich
coli-conc
Last synced: about 1 month ago
JSON representation
Enrichment of PICA catalog records with subject indexing data from concordances
- Host: GitHub
- URL: https://github.com/gbv/coli-rich
- Owner: gbv
- License: mit
- Created: 2020-08-07T13:59:29.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-03-07T11:14:12.000Z (10 months ago)
- Last Synced: 2024-04-14T12:58:39.875Z (8 months ago)
- Topics: coli-conc
- Language: JavaScript
- Homepage: https://gbv.github.io/coli-rich/
- Size: 828 KB
- Stars: 1
- Watchers: 5
- Forks: 0
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# coli-rich (deprecated)
**replaced by **
[![Build Status](https://travis-ci.org/gbv/coli-rich.svg?branch=master)](https://travis-ci.org/gbv/coli-rich)
This repository contains a web application to calculate, analyze and illustrate the enrichment of PICA catalog records with subject indexing data from concordances collected in [project coli-conc](https://coli-conc.gbv.de/). The application consists of a web interface and an API.
## Table of Contents
- [Install](#install)
- [Clone and Install](#clone-and-install)
- [Configuration](#configuration)
- [Run Server](#run-server)
- [Contribute](#contribute)
- [License](#license)## Install
coli-rich is written in ECMAScript 2015 (ES6) with [Vue3](https://v3.vuejs.org/). The application currently requires Node.js 14.
### Clone and Install
~~~
git clone https://github.com/gbv/coli-rich.git
cd coli-rich
npm install
~~~### Configuration
Default configuration (located in `config/config.default.json`) can be modified by:
* user configuration file `config/config.json`.
* environment variables `NODE_ENV` (`development` or `production`) and `CONFIG_FILE`.### Run Server
Recommended installation requires [pm2](https://www.npmjs.com/package/pm2):
~~~
pm2 start ecosystem.config.json
~~~Alternatively build static files and run (by default on port 3077):
~~~
npm run build
npm run start
~~~Or start in in development mode (hot-reloading)
~~~
run run dev
~~~## Contribute
coli-rich extends [JSKOS](https://gbv.github.io/jskos/) format by Indexing Sets.
An **Indexing Set** is a JSON object that maps Concept Scheme URIs to sets of concepts, each being `inScheme` of the corresponding Concept Scheme. A minimal example with one Concept Scheme and one Concept:
~~~json
{
"http://bartoc.org/en/node/18785": [
{
"uri": "http://uri.gbv.de/terminology/bk/43.31",
"notation": [ "43.31" ],
"inScheme": [
{
"uri": "http://bartoc.org/en/node/18785"
}
]
}
]
}
~~~The concepts in an Indexing Set can further have fields:
* `PATCH` with value `=` (keep), `+` (add), or `-` (remove)
* `mappings` with a set of mappings that resulted in addition or removal of the conceptsGiven the Concept Scheme field `PICAPATH`, an Indexing Set can be converted from and to PICA format or PICA Patch format.
## License
MIT ©2024 Verbundzentrale des GBV (VZG)