Major slot migrations following slot_fixes.yaml revisions: - TimeSpan: begin_of_the_begin, begin_of_the_end, end_of_the_begin, end_of_the_end - Quantity: has_or_had_measurement_unit with MeasureUnit class - Description: has_or_had_description with Description class - URL, WikiData, Timestamp, Location, Provenance pattern classes New slots for RiC-O compliance: - Temporal: has_or_had_time_interval, calendar_system - Transfer: is_or_was_transferred, has_or_had_policy - Location: starts/ends_or_started/ended_at_location - Provenance: has_or_had_provenance_path, is_or_was_webarchived_at Archive deprecated slots per Rule 53 workflow.
98 lines
2.6 KiB
YAML
98 lines
2.6 KiB
YAML
# Location class
|
|
# Generic geographic location representation
|
|
#
|
|
# Generation date: 2026-01-15
|
|
# Rule compliance: 0 (LinkML single source of truth), 38 (slot centralization)
|
|
#
|
|
# Generic location class for use by TransferEvent and other location-referencing entities
|
|
|
|
id: https://nde.nl/ontology/hc/class/Location
|
|
name: location_class
|
|
title: Location Class
|
|
|
|
prefixes:
|
|
linkml: https://w3id.org/linkml/
|
|
hc: https://nde.nl/ontology/hc/
|
|
schema: http://schema.org/
|
|
locn: http://www.w3.org/ns/locn#
|
|
wgs84: http://www.w3.org/2003/01/geo/wgs84_pos#
|
|
|
|
default_prefix: hc
|
|
|
|
imports:
|
|
- linkml:types
|
|
- ../metadata
|
|
- ../slots/location_name
|
|
- ../slots/latitude
|
|
- ../slots/longitude
|
|
- ../slots/specificity_annotation
|
|
- ../slots/template_specificity
|
|
- ./SpecificityAnnotation
|
|
- ./TemplateSpecificityScores
|
|
|
|
classes:
|
|
Location:
|
|
class_uri: schema:Place
|
|
description: |
|
|
Generic geographic location representation.
|
|
|
|
**Purpose**:
|
|
Location provides a reusable class for representing geographic
|
|
locations with name and optional coordinates.
|
|
|
|
**Ontological Alignment**:
|
|
- **Primary**: `schema:Place` - Schema.org Place
|
|
- **Exact**: `locn:Location` - LOCN (W3C Location) location
|
|
- **Related**: `wgs84:Point` - WGS84 geo point (for coordinates)
|
|
|
|
**Use Cases**:
|
|
- Transfer event locations (origin/destination)
|
|
- Institution physical locations
|
|
- Collection storage locations
|
|
|
|
exact_mappings:
|
|
- locn:Location
|
|
|
|
related_mappings:
|
|
- wgs84:Point
|
|
|
|
slots:
|
|
- location_name
|
|
- latitude
|
|
- longitude
|
|
- specificity_annotation
|
|
- template_specificity
|
|
|
|
slot_usage:
|
|
location_name:
|
|
description: |
|
|
Human-readable name of the location.
|
|
range: string
|
|
required: true
|
|
latitude:
|
|
description: |
|
|
WGS84 latitude coordinate.
|
|
range: float
|
|
required: false
|
|
longitude:
|
|
description: |
|
|
WGS84 longitude coordinate.
|
|
range: float
|
|
required: false
|
|
|
|
annotations:
|
|
custodian_types: '["*"]'
|
|
custodian_types_rationale: Locations apply to all heritage custodian types.
|
|
custodian_types_primary: null
|
|
specificity_score: 0.2
|
|
specificity_rationale: Generic location class applicable across all contexts.
|
|
|
|
examples:
|
|
- value: |
|
|
location_name: "Rijksmuseum Amsterdam"
|
|
latitude: 52.3600
|
|
longitude: 4.8852
|
|
description: "Location with coordinates"
|
|
- value: |
|
|
location_name: "Noord-Hollands Archief, Haarlem"
|
|
description: "Location with name only"
|