Skip to content

Commit

Permalink
Merge branch 'develop' of github.com:SmartDataAnalytics/SparqlIntegra…
Browse files Browse the repository at this point in the history
…te into develop
  • Loading branch information
Aklakan committed Sep 19, 2024
2 parents 09cc4d3 + da48bbe commit f393798
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
9 changes: 7 additions & 2 deletions docs/integrate/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ layout: default

`rpt integrate` is the command for mixed RDF data and SPARQL statement processing. The name stems from the various SPARQL extensions that make it possible to reference and process non-RDF data inside a SPARQL statements.



## Basic Usage

### Example 1: Simple Processing
Expand Down Expand Up @@ -75,6 +73,13 @@ Endpoints protected by basic authentication can be proxied by supplying the cred
Note, that this is **unsafe** and should be avoided in production, but it can be useful during development.


### Example 5: Indexing Spatial Data

Data that follows the GeoSPARQL standard can be indexed by providing the `--geoindex` option. The index will be automatically updated on the first query or update request that needs to access the data after any data modification.
Statements that intrinsically do not rely on the spatial index, namely `LOAD`, `INSERT DATA` and `DELETE DATA` mark the spatial index as potentially dirty but do not trigger immediate index recreation.

`rpt integrate --server --geoindex spatial-data.ttl`


## Embedded SPARQL Engines

Expand Down
5 changes: 3 additions & 2 deletions docs/rml/index.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
---
title: Publications
title: R2RML and RML
has_children: false
nav_order: 150
layout: default
---

# Knowledge Graph Construction with (R2)RML

RPT can translate RML and R2RML to SPARQL that can be run either with the [`integrate`](integrate) (single-threaded) or the [`sansa query`](sansa) (multi-threaded) commands.
RPT can translate RML and R2RML to SPARQL that can be run either with the [`integrate`](../integrate) (single-threaded) or the [`sansa query`](../sansa/query) (multi-threaded) commands.
Note, that the generated SPARQL queries can be also be executed against the SPARQL endpoint launched by `rpt integrate --server`. This can be used to test and inspect individual SPARQL queries and the corresponding (R2)RML mappings.

## Basic Usage

Expand Down

0 comments on commit f393798

Please sign in to comment.