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: 3 months 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 (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-12-23T09:24:05.000Z (5 months ago)
- Last Synced: 2025-01-27T05:44:04.196Z (4 months 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).
[](https://github.com/filip26/titanium-rdfc/actions/workflows/java11-build.yml)
[](https://app.codacy.com/gh/filip26/titanium-rdfc/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade)
[](https://app.codacy.com/gh/filip26/titanium-rdfc/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_coverage)
[](https://search.maven.org/search?q=g:com.apicatalog%20AND%20a:titanium-rdfc)
[](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
[](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)