Skip to content

Commit

Permalink
Get Culture IDs in the right order
Browse files Browse the repository at this point in the history
  • Loading branch information
jonatansteller committed Nov 4, 2024
1 parent bfb2ee5 commit ab443e4
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,49 +97,49 @@ python go.py -l https://nfdi4culture.de/resource.ttl -f schema-list -o triples -
NFDIcore/CTO triples from a local or remote **CGIF/schema.org feed (embedded)**:

```bash
python go.py -l https://corpusvitrearum.de/cvma-digital/bildarchiv.html -f schema -e schema -o cto -n n4c-cgif -p E4229 E5308
python go.py -l https://corpusvitrearum.de/cvma-digital/bildarchiv.html -f schema -e schema -o cto -n n4c-cgif -p E5308 E4229
```

NFDIcore/CTO triples from a local or remote **CGIF/schema.org feed (API)**:

```bash
python go.py -l https://gn.biblhertz.it/fotothek/seo -f schema -e schema -o cto -n n4c-cgif-api -p E4244 E6064
python go.py -l https://gn.biblhertz.it/fotothek/seo -f schema -e schema -o cto -n n4c-cgif-api -p E6064 E4244
```

NFDIcore/CTO triples from a local or remote **Beacon-like feed of CGIF/schema.org files**:

```bash
python go.py -l downloads/n4c-cgif/beacon.txt -f beacon -e schema -o cto -n n4c-cgif-beacon -a /about.cgif -p E4229 E5308
python go.py -l downloads/n4c-cgif/beacon.txt -f beacon -e schema -o cto -n n4c-cgif-beacon -a /about.cgif -p E5308 E4229
```

NFDIcore/CTO triples from a local or remote **ZIP file containing CGIF/schema.org files**:

```bash
python go.py -l downloads/n4c-cgif.zip -f folder -e schema -o cto -n n4c-cgif-zip -af https://corpusvitrearum.de/cvma-digital/bildarchiv.html -p E4229 E5308
python go.py -l downloads/n4c-cgif.zip -f folder -e schema -o cto -n n4c-cgif-zip -af https://corpusvitrearum.de/cvma-digital/bildarchiv.html -p E5308 E4229
```

NFDIcore/CTO triples from a local **folder containing CGIF/schema.org files**:

```bash
python go.py -l downloads/n4c-cgif/files -f folder -e schema -o cto -n n4c-cgif-folder -p E4229 E5308
python go.py -l downloads/n4c-cgif/files -f folder -e schema -o cto -n n4c-cgif-folder -p E5308 E4229
```

NFDIcore/CTO triples from a local or remote **Beacon-like feed of LIDO files** (feed URI added because it is not in the data):

```bash
python go.py -l downloads/n4c-cgif/beacon.txt -f beacon -e lido -o cto -n n4c-lido -a /about.lido -af https://corpusvitrearum.de/cvma-digital/bildarchiv.html -p E4229 E5308
python go.py -l downloads/n4c-cgif/beacon.txt -f beacon -e lido -o cto -n n4c-lido -a /about.lido -af https://corpusvitrearum.de/cvma-digital/bildarchiv.html -p E5308 E4229
```

NFDIcore/CTO triples from a local or remote **ZIP file containing LIDO files**:

```bash
python go.py -l downloads/n4c-lido.zip -f folder -e lido -o cto -n n4c-lido-zip -af https://corpusvitrearum.de/cvma-digital/bildarchiv.html -p E4229 E5308
python go.py -l downloads/n4c-lido.zip -f folder -e lido -o cto -n n4c-lido-zip -af https://corpusvitrearum.de/cvma-digital/bildarchiv.html -p E5308 E4229
```

NFDIcore/CTO triples from a local **folder containing LIDO files**:

```bash
python go.py -l downloads/n4c-lido/files -f folder -e lido -o cto -n n4c-lido-folder -af https://corpusvitrearum.de/cvma-digital/bildarchiv.html -p E4229 E5308
python go.py -l downloads/n4c-lido/files -f folder -e lido -o cto -n n4c-lido-folder -af https://corpusvitrearum.de/cvma-digital/bildarchiv.html -p E5308 E4229
```

### Corpus Vitrearum Germany
Expand All @@ -165,13 +165,13 @@ python go.py -l https://corpusvitrearum.de/id/about.ttl -f schema-list -o files
Beacon, CSV table, NFDIcore/CTO, files, and triples from **CGIF/schema.org (embedded)** data:

```bash
python go.py -l https://corpusvitrearum.de/cvma-digital/bildarchiv.html -f schema -e schema -o beacon csv cto files triples -n cvma-cgif -p E4229 E5308 -c https://corpusvitrearum.de/id/
python go.py -l https://corpusvitrearum.de/cvma-digital/bildarchiv.html -f schema -e schema -o beacon csv cto files triples -n cvma-cgif -p E5308E4229 -c https://corpusvitrearum.de/id/
```

Beacon, CSV table, NFDIcore/CTO, files, and triples from **CGIF/schema.org (API)** data:

```bash
python go.py -l https://corpusvitrearum.de/id/about.cgif -f schema -e schema -o beacon csv cto files triples -n cvma-cgif-api -p E4229 E5308
python go.py -l https://corpusvitrearum.de/id/about.cgif -f schema -e schema -o beacon csv cto files triples -n cvma-cgif-api -p E5308 E4229
```

Beacon, CSV table, NFDIcore/CTO, and files from **LIDO** data:
Expand Down

0 comments on commit ab443e4

Please sign in to comment.