From 340fd724a5c97bdbae3a706243ecdcc2712d239c Mon Sep 17 00:00:00 2001 From: philblackwood Date: Tue, 3 Dec 2024 14:39:23 -0500 Subject: [PATCH 1/3] fix definition of GeoSegment #1134 --- ontologies/gistCore.ttl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ontologies/gistCore.ttl b/ontologies/gistCore.ttl index 0671cf72..91fc55e6 100644 --- a/ontologies/gistCore.ttl +++ b/ontologies/gistCore.ttl @@ -778,6 +778,7 @@ gist:GeoRoute ] ; skos:definition "An ordered set of GeoPoints that defines a path from starting point to ending point."^^xsd:string ; skos:prefLabel "Geo Route"^^xsd:string ; + skos:scopeNote "Each pair of consecutive GeoPoints in a GeoRoute is a GeoSegment."^^xsd:string ; . gist:GeoSegment @@ -800,7 +801,7 @@ gist:GeoSegment ] ) ; ] ; - skos:definition "A single portion of a GeoRegion which has been divided (i.e., segmented)."^^xsd:string ; + skos:definition "A single portion of a GeoRoute consisting of a pair of consecutive GeoPoints which belong to it."^^xsd:string ; skos:prefLabel "Geo Segment"^^xsd:string ; . From 6c380c9e3d837bade3798649766f80437afd3541 Mon Sep 17 00:00:00 2001 From: philblackwood Date: Tue, 3 Dec 2024 14:46:00 -0500 Subject: [PATCH 2/3] release note for #1134 --- docs/release_notes/issue1134-geosegment-definition.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 docs/release_notes/issue1134-geosegment-definition.md diff --git a/docs/release_notes/issue1134-geosegment-definition.md b/docs/release_notes/issue1134-geosegment-definition.md new file mode 100644 index 00000000..3eb6f364 --- /dev/null +++ b/docs/release_notes/issue1134-geosegment-definition.md @@ -0,0 +1 @@ +Fix definition of GeoSegment to say it is a portion of the GeoRoute (not a portion of a GeoRegion). From 5fa11a03767fe2321d8daefb17d1b07438a7c8ef Mon Sep 17 00:00:00 2001 From: philblackwood Date: Wed, 4 Dec 2024 17:14:02 -0500 Subject: [PATCH 3/3] added scope note stating a geo segment is also a geo route --- ontologies/gistCore.ttl | 1 + 1 file changed, 1 insertion(+) diff --git a/ontologies/gistCore.ttl b/ontologies/gistCore.ttl index 91fc55e6..40391632 100644 --- a/ontologies/gistCore.ttl +++ b/ontologies/gistCore.ttl @@ -803,6 +803,7 @@ gist:GeoSegment ] ; skos:definition "A single portion of a GeoRoute consisting of a pair of consecutive GeoPoints which belong to it."^^xsd:string ; skos:prefLabel "Geo Segment"^^xsd:string ; + skos:scopeNote "A GeoSegment is also a GeoRoute (a short one)."^^xsd:string ; . gist:GeoVolume