Skip to content
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

Deprecated properties related to occupying a location. #941

Merged
merged 8 commits into from
Aug 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions docs/release_notes/Issue-809-occupiesGeographically.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
### Minor Updates

- Deprecated properties related to occupying a location. Issue [#809](https://github.com/semanticarts/gist/issues/809). Changes:
- Deprecated properties: `gist:occupiesGeographically` and `gist:occupiesGeographicallyPermanently`.
- Updated annotations for `gist:hasPhysicalLocation` regarding location temporality.
6 changes: 5 additions & 1 deletion gistCore.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -1287,6 +1287,7 @@ gist:Landmark
) ;
] ;
skos:definition "Something permanently attached to the Earth."^^xsd:string ;
skos:editorialNote "See guidance on removing the term in the next major release at https://github.com/semanticarts/gist/issues/947#issuecomment-1679566885."^^xsd:string ;
skos:prefLabel "Landmark"^^xsd:string ;
.

Expand Down Expand Up @@ -3222,8 +3223,9 @@ gist:hasPhysicalLocation
owl:TransitiveProperty
;
rdfs:range gist:Place ;
skos:definition "Where something is located"^^xsd:string ;
skos:definition "Relates something to its physical location."^^xsd:string ;
skos:prefLabel "has physical location"^^xsd:string ;
skos:scopeNote "This property does not distinguish between things whose locations are stable and those whose locations change over time; e.g., a fire hydrant vs. a car."^^xsd:string ;
.

gist:hasPrecision
Expand Down Expand Up @@ -3574,13 +3576,15 @@ gist:occupiesGeographically
) ;
] ;
rdfs:range gist:Place ;
owl:deprecated "true"^^xsd:boolean ;
skos:definition "A thing occupies are region"^^xsd:string ;
skos:prefLabel "occupies geographically"^^xsd:string ;
.

gist:occupiesGeographicallyPermanently
a owl:ObjectProperty ;
rdfs:subPropertyOf gist:occupiesGeographically ;
owl:deprecated "true"^^xsd:boolean ;
skos:definition "To be in a fixed position on the earth"^^xsd:string ;
skos:prefLabel "occupies geographically permanently"^^xsd:string ;
.
Expand Down