-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
updated ismi sample data for development branch #104
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
1148c90
add ismi sample data (see #17)
robcast 24be8e8
update ISMI sample data and README with current CIDOC-CRM model.
robcast 869ed56
Merge branch 'develop' into 17-ismi-sample-data
robcast 0e36e45
move to new directory.
robcast f0ee32c
add notebook with first examples of converting ismi dates to undate.
robcast b994eb2
move notebook to separate branch
robcast File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | ||
@prefix crm: <http://www.cidoc-crm.org/cidoc-crm/> . | ||
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | ||
# prefix for date and calendar type URIs | ||
@prefix datetype: <http://content.mpiwg-berlin.mpg.de/ns/ismi/type/date/> . | ||
@prefix calendartype: <http://content.mpiwg-berlin.mpg.de/ns/ismi/type/calendar/> . | ||
# prefix for sample data | ||
@prefix : <http://content.mpiwg-berlin.mpg.de/ns/ismi/> . | ||
|
||
# day-precision date in islamic calendar | ||
:date1 a crm:E52_Time-Span ; | ||
crm:P2_has_type datetype:day ; | ||
crm:P82_at_some_time_within "1495-12-11"^^xsd:date ; | ||
crm:P3_has_note "day-precision date in islamic calendar" ; | ||
crm:P1_is_identified_by :date1-label . | ||
:date1-label a crm:E41_Appellation ; | ||
crm:P2_has_type calendartype:islamic ; | ||
rdfs:label "901 Rabīʿ I 14 (islamic)" . | ||
|
||
# year-precision date in islamic calendar | ||
:date2 a crm:E52_Time-Span ; | ||
crm:P2_has_type datetype:year ; | ||
crm:P82a_begin_of_the_begin "1479-04-03"^^xsd:date ; | ||
crm:P82b_end_of_the_end "1480-03-21"^^xsd:date ; | ||
crm:P3_has_note "year-precision date in islamic calendar" ; | ||
crm:P1_is_identified_by :date2-label . | ||
:date2-label a crm:E41_Appellation ; | ||
crm:P2_has_type calendartype:islamic ; | ||
rdfs:label "884 (islamic)" . | ||
|
||
# range-type (century in islamic calendar) date in islamic calendar | ||
:date3 a crm:E52_Time-Span ; | ||
crm:P2_has_type datetype:range ; | ||
crm:P82a_begin_of_the_begin "1494-10-11"^^xsd:date ; | ||
crm:P82b_end_of_the_end "1591-10-18"^^xsd:date ; | ||
crm:P3_has_note "range-type (century in islamic calendar) date in islamic calendar" ; | ||
crm:P1_is_identified_by :date3-label . | ||
:date3-label a crm:E41_Appellation ; | ||
crm:P2_has_type calendartype:islamic ; | ||
rdfs:label "900 Muḥarram 1 - 999 Ḏu al-Ḥijjaẗ 29 (islamic)" . | ||
|
||
# day-precision date in gregorian calendar | ||
:date4 a crm:E52_Time-Span ; | ||
crm:P2_has_type datetype:day ; | ||
crm:P82_at_some_time_within "1830-02-08"^^xsd:date ; | ||
crm:P3_has_note "day-precision date in gregorian calendar" ; | ||
crm:P1_is_identified_by :date4-label . | ||
:date4-label a crm:E41_Appellation ; | ||
crm:P2_has_type calendartype:gregorian ; | ||
rdfs:label "1830 February 8 (gregorian)" . | ||
|
||
# year-precision date in gregorian calendar | ||
:date5 a crm:E52_Time-Span ; | ||
crm:P2_has_type datetype:year ; | ||
crm:P82a_begin_of_the_begin "1796-01-01"^^xsd:date ; | ||
crm:P82b_end_of_the_end "1796-12-31"^^xsd:date ; | ||
crm:P3_has_note "year-precision date in gregorian calendar" ; | ||
crm:P1_is_identified_by :date5-label . | ||
:date5-label a crm:E41_Appellation ; | ||
crm:P2_has_type calendartype:gregorian ; | ||
rdfs:label "1796 (gregorian)" . | ||
|
||
# range-type (century in gregorian calendar) date in gregorian calendar | ||
:date6 a crm:E52_Time-Span ; | ||
crm:P2_has_type datetype:range ; | ||
crm:P82a_begin_of_the_begin "1600-01-01"^^xsd:date ; | ||
crm:P82b_end_of_the_end "1699-12-31"^^xsd:date ; | ||
crm:P3_has_note "range-type (century in gregorian calendar) date in gregorian calendar" ; | ||
crm:P1_is_identified_by :date6-label . | ||
:date6-label a crm:E41_Appellation ; | ||
crm:P2_has_type calendartype:gregorian ; | ||
rdfs:label "1600 January 1 - 1699 December 31 (gregorian)" . | ||
|
||
# day-precision date in julian calendar | ||
:date7 a crm:E52_Time-Span ; | ||
crm:P2_has_type datetype:day ; | ||
crm:P82_at_some_time_within "1035-06-04"^^xsd:date ; | ||
crm:P3_has_note "day-precision date in julian calendar" ; | ||
crm:P1_is_identified_by :date7-label . | ||
:date7-label a crm:E41_Appellation ; | ||
crm:P2_has_type calendartype:julian ; | ||
rdfs:label "1035 May 29 (julian)" . | ||
|
||
# year-precision date in julian calendar | ||
:date8 a crm:E52_Time-Span ; | ||
crm:P2_has_type datetype:year ; | ||
crm:P82a_begin_of_the_begin "1013-01-07"^^xsd:date ; | ||
crm:P82b_end_of_the_end "1014-01-06"^^xsd:date ; | ||
crm:P3_has_note "year-precision date in julian calendar" ; | ||
crm:P1_is_identified_by :date8-label . | ||
:date8-label a crm:E41_Appellation ; | ||
crm:P2_has_type calendartype:julian ; | ||
rdfs:label "1013 (julian)" . | ||
|
||
# range-type (century in julian calendar) date in julian calendar | ||
:date9 a crm:E52_Time-Span ; | ||
crm:P2_has_type datetype:range ; | ||
crm:P82a_begin_of_the_begin "1200-01-08"^^xsd:date ; | ||
crm:P82b_end_of_the_end "1300-01-07"^^xsd:date ; | ||
crm:P3_has_note "range-type (century in julian calendar) date in julian calendar" ; | ||
crm:P1_is_identified_by :date9-label . | ||
:date9-label a crm:E41_Appellation ; | ||
crm:P2_has_type calendartype:julian ; | ||
rdfs:label "1200 January 1 - 1299 December 31 (julian)" . |
186 changes: 0 additions & 186 deletions
186
examples/use-cases/ismi/data/ismi-om4-date-samples.json
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We could turn this into a markdown relative link at some point, but this is fine for now. I think we're going to need to restructure the examples and notebooks anyway now that we have a few more of them.