You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-6Lines changed: 3 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
## Description
4
4
This project is a TypeScript/JavaScript application that processes RDF data to create a graph representation. It uses React for the frontend and Chakra UI for styling.
5
5
6
-
We strongly suggest users to use `turtle for`mat for RDF data and `schema.org` vocabulary for the properties. The application is designed to work with the `schema.org` vocabulary, since we developed it for a specific use case. However, it can be easily modified to work with other vocabularies.
6
+
We strongly suggest users to use `turtle` format for RDF data and `schema.org` vocabulary for the properties. The application is designed to work with the `schema.org` vocabulary, since we developed it for a specific use case. However, it can be easily modified to work with other vocabularies.
7
7
8
8
## Features
9
9
- Parses RDF data and filters relevant properties.
@@ -36,7 +36,8 @@ npm run build
36
36
```
37
37
38
38
## Configuration
39
-
Configuration file has the necessary information to show nodes and links in the graph. Since a 3D graph on the browser consumes a lot of resources, it is important to filter the data to show only the necessary information. Properties that are not in the yaml file will be ignored.
39
+
Configuration file has the necessary information to show nodes and links in the graph. Since a 3D graph on the browser consumes a lot of resources, it is important to filter the data to show only the necessary information. Properties that are not in the yaml file will be ignored. You can check [example config file](examples/config.yml) for more information.
40
+
You can also check example RDF files in the examples folder to see how the data should be formatted.
40
41
41
42
The configuration file is a YAML file that has the following properties:
42
43
```yaml
@@ -58,7 +59,6 @@ groups:
58
59
color: '#FF0000'
59
60
```
60
61
61
-
- `relevantProperties`: List of properties that will be used to filter the data.
62
62
- `relationProperties`: List of properties that will be used to create links between nodes.
63
63
- `labelProperties`: List of properties that will be used to create labels for nodes.
64
64
- `groups`: List of groups that will be created based on the properties. Each group has the following properties:
@@ -73,9 +73,6 @@ If you want to cite this project in your scientific work,
73
73
please use the [citation file](https://citation-file-format.github.io/)
74
74
in the [repository](https://github.com/Materials-Data-Science-and-Informatics/rdf-graph-visualization/blob/main/CITATION.cff).
0 commit comments