File size: 2,198 Bytes
792a480
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
65c3145
792a480
 
 
 
 
 
 
 
 
 
 
65c3145
792a480
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
iCalendar Vocabulary (iCalendar)
========================================================================================================================

Overview
--------
iCalendar is an Internet standard for exchanging calendar and scheduling data across different applications
and platforms using a standardized text-based format (.ics). It enables interoperability for events, tasks,
and scheduling, supporting features like recurring events, invitations, and time zone adjustments.
While widely used in applications like Google Calendar and Outlook, its complexity and partial implementations
pose challenges, leading to efforts to integrate it with Semantic Web technologies
for enhanced data linking and automation.

:Domain: Events
:Category: Calendar and Scheduling
:Current Version: 1.14
:Last Updated: 2004/04/07
:Creator: Dan Connolly, W3C, Libby Miller, ASemantics
:License: Open Publication License
:Format: RDF
:Download: `iCalendar Vocabulary (iCalendar) Homepage <https://www.w3.org/2002/12/cal/>`_

Graph Metrics
-------------
    - **Total Nodes**: 496
    - **Total Edges**: 1271
    - **Root Nodes**: 4
    - **Leaf Nodes**: 93

Knowledge coverage
------------------
    - Classes: 54
    - Individuals: 0
    - Properties: 49

Hierarchical metrics
--------------------
    - **Maximum Depth**: 1
    - **Minimum Depth**: 0
    - **Average Depth**: 0.60
    - **Depth Variance**: 0.24

Breadth metrics
------------------
    - **Maximum Breadth**: 6
    - **Minimum Breadth**: 4
    - **Average Breadth**: 5.00
    - **Breadth Variance**: 1.00

Dataset Statistics
------------------
Generated Benchmarks:
    - **Term Types**: 0
    - **Taxonomic Relations**: 0
    - **Non-taxonomic Relations**: 0
    - **Average Terms per Type**: 0.00

Usage Example
-------------
.. code-block:: python

    from ontolearner.ontology import iCalendar

    # Initialize and load ontology
    ontology = iCalendar()
    ontology.load("path/to/ontology.RDF")

    # Extract datasets
    data = ontology.extract()

    # Access specific relations
    term_types = data.term_typings
    taxonomic_relations = data.type_taxonomies
    non_taxonomic_relations = data.type_non_taxonomic_relations