Skip to content

Commit

Permalink
expanding named entity set definition (LanguageMachines/frog#59)
Browse files Browse the repository at this point in the history
  • Loading branch information
proycon committed Aug 23, 2018
1 parent 6af7d17 commit d3717e8
Show file tree
Hide file tree
Showing 2 changed files with 77 additions and 2 deletions.
73 changes: 72 additions & 1 deletion setdefinitions/namedentities.foliaset.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,24 @@

namedentities:Set a skos:Collection ;
skos:member namedentities:eve,
namedentities:eve.disaster,
namedentities:eve.holiday,
namedentities:eve.festival,
namedentities:eve.meeting,
namedentities:eve.conference,
namedentities:eve.concert,
namedentities:eve.party,
namedentities:loc,
namedentities:loc.building,
namedentities:loc.city,
namedentities:loc.country,
namedentities:loc.housenumber,
namedentities:loc.line,
namedentities:loc.metaphysical,
namedentities:loc.nature,
namedentities:loc.nature.river,
namedentities:loc.nature.mountain,
namedentities:loc.nature.forest,
namedentities:loc.point,
namedentities:loc.region,
namedentities:loc.region.county,
Expand All @@ -29,13 +40,44 @@ namedentities:Set a skos:Collection ;
namedentities:org,
namedentities:per,
namedentities:pro ;
namedentities:time ;
namedentities:veh ;
namedentities:veh.registration ;
skos:notation "namedentities" .

namedentities:eve a skos:Concept ;
fsd:sequenceNumber 5 ;
skos:notation "eve" ;
skos:prefLabel "Event" .

namedentities:eve.disaster a skos:Concept ;
skos:notation "eve.disaster" ;
skos:prefLabel "Event - Disaster" .

namedentities:eve.holiday a skos:Concept ;
skos:notation "eve.holiday" ;
skos:prefLabel "Event - Holiday" .

namedentities:eve.festival a skos:Concept ;
skos:notation "eve.festival" ;
skos:prefLabel "Event - Festival" .

namedentities:eve.meeting a skos:Concept ;
skos:notation "eve.meeting" ;
skos:prefLabel "Event - Meeting" .

namedentities:eve.conference a skos:Concept ;
skos:notation "eve.conference" ;
skos:prefLabel "Event - Conference" .

namedentities:eve.concert a skos:Concept ;
skos:notation "eve.concert" ;
skos:prefLabel "Event - Concert" .

namedentities:eve.party a skos:Concept ;
skos:notation "eve.party" ;
skos:prefLabel "Event - Party" .

namedentities:loc.building a skos:Concept ;
skos:broader namedentities:loc ;
skos:notation "loc.building" ;
Expand Down Expand Up @@ -64,7 +106,22 @@ namedentities:loc.metaphysical a skos:Concept ;
namedentities:loc.nature a skos:Concept ;
skos:broader namedentities:loc ;
skos:notation "loc.nature" ;
skos:prefLabel "Location - Nature elements" .
skos:prefLabel "Location - Natural bodies" .

namedentities:loc.nature.river a skos:Concept ;
skos:broader namedentities:loc ;
skos:notation "loc.nature.river" ;
skos:prefLabel "Location - Nature - River" .

namedentities:loc.nature.mountain a skos:Concept ;
skos:broader namedentities:loc ;
skos:notation "loc.nature.mountain" ;
skos:prefLabel "Location - Nature - Mountain" .

namedentities:loc.nature.forest a skos:Concept ;
skos:broader namedentities:loc ;
skos:notation "loc.nature.forest" ;
skos:prefLabel "Location - Nature - Forest" .

namedentities:loc.point a skos:Concept ;
skos:broader namedentities:loc ;
Expand Down Expand Up @@ -131,6 +188,20 @@ namedentities:pro a skos:Concept ;
skos:notation "pro" ;
skos:prefLabel "Product" .

namedentities:time a skos:Concept ;
fsd:sequenceNumber 5 ;
skos:notation "time" ;
skos:prefLabel "Time" .

namedentities:veh a skos:Concept ;
fsd:sequenceNumber 6 ;
skos:notation "veh" ;
skos:prefLabel "Vehicle" .

namedentities:veh.registration a skos:Concept ;
skos:notation "veh.registration" ;
skos:prefLabel "Vehicle - Registration" .

namedentities:loc.region a skos:Concept ;
skos:broader namedentities:loc ;
skos:notation "loc.region" ;
Expand Down
6 changes: 5 additions & 1 deletion setdefinitions/namedentities.foliaset.xml
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<set xml:id="namedentities" type="closed" xmlns="http://ilk.uvt.nl/folia" conceptlink="http://www.isocat.org/datcat/DC-2275">
<!-- NOTE: this legacy version is no longer updated, use the TTL version instead! -->
<class xml:id="loc" label="Location">
<class xml:id="loc.street" label="Location - Street" />
<class xml:id="loc.building" label="Location - Building" />
<class xml:id="loc.nature" label="Location - Nature elements" />
<class xml:id="loc.nature" label="Location - Natural elements">
<class xml:id="loc.nature.river" label="Location - Nature - River" />
<class xml:id="loc.nature.mountain" label="Location - Nature - Mountain" />
</class>
<class xml:id="loc.transport" label="Location - Transport infrastructure" />
<class xml:id="loc.city" label="Location - City" />
<class xml:id="loc.country" label="Location - Country" />
Expand Down

0 comments on commit d3717e8

Please sign in to comment.