- Added new aliases for existing slots to improve clarity and usability, including: - has_deadline: has_embargo_end_date - has_extent: has_extent_text - has_fonds: has_fond - has_laboratory: conservation_lab - has_language: has_iso_code639_1, has_iso_code639_3 - has_legal_basis: legal_basis - has_light_exposure: max_light_lux - has_measurement_unit: has_unit - has_note: has_custodian_observation - has_occupation: occupation - has_operating_hours: has_operating_hours - has_position: position - has_quantity: has_artwork_count, link_count - has_roadmap: review_date - has_skill: skill - has_speaker: speaker_label - has_specification: specification_url - has_statement: rights_statement_url, rights_statement - has_type: custodian_only - has_user_category: serves_visitors_only - hold_record_set: record_count - identified_by: has_index_number - in_period: has_period - in_place: has_place - in_series: has_series - measure: has_measurement - measured_on: measurement_date - organized_by: has_organizer - originate_from: has_origin - part_of: suborganization_of - published_on: has_publication_date - receive_investment: has_investment - related_to: connection_heritage_type - require: preservation_requirement - safeguarded_by: current_keeper, record_holder_note - state: states_or_stated - take_comission: takes_or_took_comission - take_place_at: takes_or_took_place_at - transmit_through: transmits_or_transmitted_through - warrant: warrants_or_warranted - Introduced a new slot definition for evaluated_through to capture evaluation methodologies and review statuses.
140 lines
No EOL
4.3 KiB
YAML
140 lines
No EOL
4.3 KiB
YAML
id: https://nde.nl/ontology/hc/class/area
|
|
name: area_class
|
|
title: Area Class
|
|
description: >-
|
|
Class representing an area measurement with value, unit, and context.
|
|
|
|
**RULE 53 COMPLIANT**: This is the authoritative class for area measurements,
|
|
replacing domain-specific float slots like area_hectares, building_floor_area_sqm,
|
|
and has_area_in_hectare.
|
|
|
|
**REPLACES**:
|
|
- area_hectares (OutdoorSite) - float in hectares
|
|
- building_floor_area_sqm (HistoricBuilding) - float in square meters
|
|
- has_area_in_hectare (bespoke, incorrectly created)
|
|
|
|
**ADVANTAGES OVER SIMPLE FLOAT**:
|
|
- Explicit unit specification (no ambiguity between m² and hectares)
|
|
- Temporal context (measurement date for historic facilities)
|
|
- Provenance (measurement method, source)
|
|
- Estimation flag (is_estimate for approximate values)
|
|
|
|
prefixes:
|
|
linkml: https://w3id.org/linkml/
|
|
hc: https://nde.nl/ontology/hc/
|
|
schema: http://schema.org/
|
|
qudt: http://qudt.org/schema/qudt/
|
|
geosparql: http://www.opengis.net/ont/geosparql#
|
|
|
|
imports:
|
|
- linkml:types
|
|
- ../slots/has_label
|
|
- ../slots/has_measurement_unit
|
|
- ../slots/has_value
|
|
- ../slots/approximate
|
|
- ../slots/has_date
|
|
- ../slots/measured_through
|
|
default_prefix: hc
|
|
|
|
classes:
|
|
Area:
|
|
description: >-
|
|
A measurement of spatial extent (area) with value, unit, and metadata.
|
|
|
|
Captures area measurements for heritage facilities including outdoor sites,
|
|
buildings, rooms, and storage areas. Supports multiple units (m², hectares,
|
|
acres) with explicit unit specification.
|
|
|
|
**TEMPORAL ASPECT**: Areas can change over time (building extensions,
|
|
site acquisitions). The measurement_date captures when the area was measured.
|
|
|
|
**ESTIMATION SUPPORT**: Heritage facilities often have estimated areas,
|
|
especially for historic buildings. The is_estimate flag indicates uncertainty.
|
|
class_uri: qudt:QuantityValue
|
|
exact_mappings:
|
|
- qudt:QuantityValue
|
|
close_mappings:
|
|
- schema:QuantitativeValue
|
|
- geosparql:hasArea
|
|
slots:
|
|
- has_value
|
|
- has_measurement_unit
|
|
- measurement_date
|
|
- approximate
|
|
- measured_through
|
|
- has_label
|
|
slot_usage:
|
|
has_value:
|
|
range: float
|
|
required: true
|
|
examples:
|
|
- value: 25.0
|
|
- value: 5000.0
|
|
has_measurement_unit:
|
|
range: MeasureUnit
|
|
required: true
|
|
inlined: true
|
|
examples:
|
|
- value:
|
|
has_type: HECTARE
|
|
has_symbol: "ha"
|
|
- value:
|
|
has_type: SQUARE_METER
|
|
has_symbol: "m²"
|
|
measurement_date:
|
|
range: date
|
|
required: false
|
|
examples:
|
|
- value: "2024-01-15"
|
|
- value: "1985-06-01"
|
|
approximate:
|
|
range: boolean
|
|
required: false
|
|
examples:
|
|
- value: true
|
|
- value: false
|
|
measured_through:
|
|
# range: string
|
|
required: false
|
|
examples:
|
|
- value: "GIS analysis"
|
|
- value: "Land survey"
|
|
- value: "Historical records"
|
|
has_label:
|
|
# range: string
|
|
examples:
|
|
- value: "Total site area"
|
|
- value: "Building floor area"
|
|
examples:
|
|
- value:
|
|
has_unit:
|
|
has_type: HECTARE
|
|
has_symbol: "ha"
|
|
has_label: "Sculpture garden area"
|
|
- value:
|
|
has_unit:
|
|
has_type: SQUARE_METER
|
|
has_symbol: "m²"
|
|
measurement_date: "2023-03-15"
|
|
is_estimate: false
|
|
measurement_method: "Architectural survey"
|
|
has_label: "Total floor area"
|
|
- value:
|
|
has_unit:
|
|
has_type: HECTARE
|
|
has_symbol: "ha"
|
|
is_estimate: true
|
|
measurement_method: "Historical records"
|
|
has_label: "Estate grounds"
|
|
annotations:
|
|
custodian_types: '["*"]'
|
|
custodian_types_rationale: >-
|
|
Area measurements applicable to all heritage custodian types.
|
|
specificity_score: 0.4
|
|
specificity_rationale: >-
|
|
Broadly useful class - area measurements relevant for site planning,
|
|
collection storage, visitor capacity, and facility management.
|
|
|
|
|
|
# REMOVED inline slots 2026-01-16 - Rule 48 violation
|
|
# Slots are imported from ../slots/ - do not define inline |