Skip to content

Instantly share code, notes, and snippets.

@tombaker
tombaker / testgraph.nt
Created December 20, 2023 09:26
Test graph for NALT collections
<https://lod.nal.usda.gov/nalt/2> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#Property> .
<https://lod.nal.usda.gov/naltcoll/Sample> <http://www.w3.org/2004/02/skos/core#member> <https://lod.nal.usda.gov/nalt/1> .
<https://lod.nal.usda.gov/nalt/1> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://purl.org/dc/terms/identifier> .
<https://lod.nal.usda.gov/nalt/6> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#Property> .
<https://lod.nal.usda.gov/nalt/41> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
<https://lod.nal.usda.gov/nalt/4> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#Property> .
<https://lod.nal.usda.gov/nalt/4> <http://www.w3.org/2004/02/skos/core#prefLabel> "Cotton gin"@en .
<https://lod.nal.usda.gov/nalt/5> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-sy
@tombaker
tombaker / cotton.shexc
Last active May 10, 2023 12:33
DCTAP about cotton data converted into ShExC
PREFIX : <http://example.org/>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX schema: <http://schema.org/>
PREFIX dct: <http://purl.org/dc/terms/>
:Production {
dct:identifier xsd:integer;
agschema:plantingDate xsd:date;
agschema:harvestDate xsd:date;
@tombaker
tombaker / cotton.csv
Last active May 10, 2023 12:33
DCTAP about cotton data
shapeID start propertyID valueNodeType valueDataType minoccurs maxoccurs valueShape
:Production True dct:identifier xsd:integer
agschema:plantingDate xsd:date
agschema:harvestDate xsd:date
agschema:seedingRatePerAcre xsd:decimal
agschema:percentBallOpened xsd:decimal
agschema:weather :Weather
agschema:substrate :Soil
agschema:location :Lot
agschema:observedResult 0 -1 :ProductionCrop
@tombaker
tombaker / DCAM2.md
Last active December 16, 2021 15:32
DC Abstract Model
Language Instance Data Application Profile (DCTAP Instance)
Entity Entity Description Shape
- Sentence - Statement - Statement Constraint
-- Predicate -- Property -- Property Constraint
-- Object -- Value -- Value Constraint

Linguage: Where we talk about things in the world.

  • Entity: Some thing we talk about, or denote.
  • Assertion: Something specific we say about the entity denoted.
@tombaker
tombaker / DCAM2.csv
Created December 16, 2021 13:06
DC Abstract Model
Conceptual Reality Instance Data Application Profile (DCTAP Instance)
Entity Entity Description Shape
Sentence about Entity Statement Statement Constraint
Predicate of Sentence Property Property Constraint
Object of Sentence Value Value Constraint
@tombaker
tombaker / rice.ttl
Created May 9, 2021 13:28
SKOS concept in Turtle syntax
@prefix agvoc: <http://aims.fao.org/aos/agrovoc/> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
agvoc:c_6599 a skos:Concept ;
dct:created "2011-11-20"^^xsd:dateTime ;
skos:altLabel "paddy"@en,
"水稻"@zh ;
skos:broader agvoc:c_1474 ;
@tombaker
tombaker / skos_in_rdf.ipynb
Created May 9, 2021 12:41
SKOS concept in 3 serializations plus rapper
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@tombaker
tombaker / skos_in_rdf.ipynb
Created May 9, 2021 12:18
SKOS concept shown in three RDF serializations
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
PREFIX : <http://example.org/>
PREFIX schema: <http://schema.org/>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
:User IRI {
schema:name xsd:string ;
schema:knows @:User*
}