Skip to content
Snippets Groups Projects
Commit cf1adf30 authored by Nicola Carboni's avatar Nicola Carboni
Browse files

Added Tropy

parent bca62ccf
No related branches found
No related tags found
No related merge requests found
......@@ -20,4 +20,8 @@ L'intérêt des notebooks et de Python étant d'automatiser des tâches répéti
* `3. Basart_evol_titres.ipynb` : le 3e notebook part de la base complète du projet Artlas, et vous propose de réaliser des nuages de mots selon les années et selon la colonne que l'on choisit. L'intéret de ce notebook est qu'il vous apprend notamment à faire des tris dans des dataframes; puis qu'il vous entraîne à utiliser plus souvent des fonctions et des boucles.
---
Dans le dossier [Tropy](tropy/), vous trouverez le notebook pour exporter les images d'Explore et les analyser à l'aide de [Tropy] (https://tropy.org).
This diff is collapsed.
File added
@prefix vs: <https://visualcontagions.net/schema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix vann: <http://purl.org/vocab/vann/> .
<https://visualcontagions.net/schema#> rdf:type owl:Ontology ;
dc:creator "Nicola Carboni" ;
dc:date "2022-06-03" ;
dc:rights "This work is distributed under a Creative Commons Attribution License (http://creativecommons.org/licenses/by/3.0/)."@en ;
dc:title "Visual Contagions Schema for Tropy"@en ;
vann:preferredNamespacePrefix "vs" ;
vann:preferredNamespaceUri "http://http://visualcontagions.net/schema#" .
### CLASSES
vs:Image a rdf:Class ;
rdfs:label "Image" .
# PROPERTIES
## Original cluster export property
vs:City a rdf:Property ;
rdfs:label "City where the journal has been published" .
vs:Country a rdf:Property ;
rdfs:label "Country where the journal has been published" .
vs:wkt a rdf:Property ;
rdfs:label "Coordinate of the publication place" .
vs:Title a rdf:Property ;
rdfs:label "Title of the journal where the image is published" .
vs:image_URL a rdf:Property ;
rdfs:label "URL of the image" .
vs:mage_path a rdf:Property ;
rdfs:label "Path where to retrieved the image in the computer" .
vs:uuid a rdf:Property ;
rdfs:label "UUID derived from the url of the image" .
vs:cluster a rdf:Property ;
rdfs:label "cluster id assigned to a set og image urls" .
vs:manifest_url a rdf:Property ;
rdfs:label "URL of the manifest of the journal where the image in described" .
vs:date a rdf:Property ;
rdfs:label "single YYYY/MM/DD date of publication of the image" .
vs:Journal_Type a rdf:Property ;
rdfs:label "Type of journal where the image is published" .
## Addittion as per Marie request
### Information about the cluster. This should be automatically retrieved.
vs:timespan_begin a rdf:Property ;
rdfs:label "Initial date when an image or an image-type begin to circulate" ;
rdfs:comment "The property can be used for any time-span information within the data." .
vs:timespan_end a rdf:Property ;
rdfs:label "Last date when an image or an image-type finish to circulate" ;
rdfs:comment "The property can be used for any time-span information within the data." .
### Artwork level. The current information are generally to be intended as artwork related information and not picture related information
vs:birth_date a rdf:Property ;
rdfs:label "Date of birth of an agent (authors or agentif towards the creation of a picture or the reproduced artwork)" .
vs:death_date a rdf:Property ;
rdfs:label "Date of death of an agent (authors or agentif towards the creation of a picture or the reproduced artwork)" .
vs:birth_place a rdf:Property ;
rdfs:label "Place of birth of an agent (authors or agentif towards the creation of a picture or the reproduced artwork)".
vs:birth_place_wd a rdf:Property ;
rdfs:label "Wikidata identifier of the place of birth of an agent (authors or agentif towards the creation of a picture or the reproduced artwork)".
vs:death_place a rdf:Property ;
rdfs:label "Place of death of an agent (authors or agentif towards the creation of a picture or the reproduced artwork)" .
vs:death_place_wd a rdf:Property ;
rdfs:label "Wikidata identifier of the place of death of an agent (authors or agentif towards the creation of a picture or the reproduced artwork)" .
vs:artwork_title a rdf:Property ;
rdfs:label "Title of the artwork reproduced in the analysed picture".
vs:artwork_date a rdf:Property ;
rdfs:label "Date of creation of the artwork reproduced in the analysed picture".
vs:artwork_medium a rdf:Property ;
rdfs:label "Medium of the artwork reproduced in the analysed picture".
vs:artwork_current_institution a rdf:Property ;
rdfs:label "Institution (Museum, Gallery etc.) that is currently preserving the artwork reproduced in the analysed picture".
vs:artwork_current_location a rdf:Property ;
rdfs:label "Current location of the artwork reproduced in the analysed picture".
vs:artwork_current_location_wd a rdf:Property ;
rdfs:label "Wikidata identifier of the current location of the artwork reproduced in the analysed picture".
vs:artwork_width a rdf:Property ;
rdfs:label "The width of the the artwork reproduced in the analysed picture".
vs:artwork_length a rdf:Property ;
rdfs:label "The length of the the artwork reproduced in the analysed picture" .
vs:artwork_measurement_unit a rdf:Property ;
rdfs:label "The measurement unit used to express the diensions of the the artwork reproduced in the analysed picture" .
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment