Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/filip26/titanium-rdfc
An implementation of W3C Standard RDF Dataset Canonicalization Algorithm in Java
https://github.com/filip26/titanium-rdfc
rdf rdf-canonicalization
Last synced: about 2 hours ago
JSON representation
An implementation of W3C Standard RDF Dataset Canonicalization Algorithm in Java
- Host: GitHub
- URL: https://github.com/filip26/titanium-rdfc
- Owner: filip26
- License: apache-2.0
- Created: 2022-05-27T19:00:50.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-12-23T09:24:05.000Z (about 1 month ago)
- Last Synced: 2025-01-27T05:44:04.196Z (6 days ago)
- Topics: rdf, rdf-canonicalization
- Language: Java
- Homepage:
- Size: 257 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# Titanium RDF Dataset Canonicalization
An implementation of the [W3C Standard RDF Dataset Canonicalization Algorithm](https://www.w3.org/TR/rdf-canon/) in Java. Originally a fork of [RDF-URDNA](https://github.com/setl/rdf-urdna).
[![Java 11 CI](https://github.com/filip26/titanium-rdfc/actions/workflows/java11-build.yml/badge.svg?branch=main)](https://github.com/filip26/titanium-rdfc/actions/workflows/java11-build.yml)
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/8682ccd0fb314ee8a237462c25373686)](https://app.codacy.com/gh/filip26/titanium-rdfc/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade)
[![Codacy Badge](https://app.codacy.com/project/badge/Coverage/8682ccd0fb314ee8a237462c25373686)](https://app.codacy.com/gh/filip26/titanium-rdfc/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_coverage)
[![Maven Central](https://img.shields.io/maven-central/v/com.apicatalog/titanium-rdfc.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:com.apicatalog%20AND%20a:titanium-rdfc)
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)## Examples
```javascript
// Simple canonicalization
Collection norm = RdfCanonicalizer.canonicalize(Collection);// Get an access to data related to canonicalization process.
var canon = RdfCanonicalizer.canonicalize(Collection);
var norm = canon.canonicalize();
var labels = canon.issuer().mappingTable();
```## Installation
### Maven
```xmlcom.apicatalog
titanium-rdfc
1.0.0com.apicatalog
titanium-json-ld
1.4.1org.glassfish
jakarta.json
2.0.1```
## Documentation
[![javadoc](https://javadoc.io/badge2/com.apicatalog/titanium-rdfc/javadoc.svg)](https://javadoc.io/doc/com.apicatalog/titanium-rdfc)
## Contributing
All PR's welcome!
### Building
Fork and clone the project repository.
```bash
> cd titanium-rdfc
> mvn package
```## Resources
* [W3C Standard RDF Dataset Canonicalization Algorithm](https://www.w3.org/TR/rdf-canon/)
* [Titanium JSON-LD](https://github.com/filip26/titanium-json-ld)