Geologic Timescale model (GTS)

The Geologic Timescale (GTS) is an RDF/OWL ontology representation of the standard geologic timescale model, adapted from the GeoSciML framework and compatible with geospatial information transfer standards. It provides a formal semantic model for representing geological time periods, epochs, eons, and their boundaries based on the Global Stratotype Section and Point (GSSP) framework established by the International Commission on Stratigraphy. GTS enables precise temporal annotation of geological data, enabling scientists to associate geological observations, samples, and events with specific time periods in Earth’s history. The ontology supports hierarchical relationships between time divisions, enabling both broad geological age classification and detailed temporal analysis. GTS facilitates integration of paleontological, stratigraphic, and geological survey data across diverse research institutions and databases.

Example Usage: Annotate a rock sample or fossil record with GTS terms such as “Cretaceous” (era), “Campanian” (stage), or specific GSSP boundary ages to enable temporal querying and stratigraphic correlation.

Metrics & Statistics

Graph Statistics

Total Nodes

311

Total Edges

743

Root Nodes

0

Leaf Nodes

92

Knowledge Coverage Statistics

Classes

40

Individuals

7

Properties

12

Hierarchical Metrics

Maximum Depth

0

Minimum Depth

0

Average Depth

0.00

Depth Variance

0.00

Breadth Metrics

Maximum Breadth

0

Minimum Breadth

0

Average Breadth

0.00

Breadth Variance

0.00

LLMs4OL Dataset Statistics

Term Types

7

Taxonomic Relations

77

Non-taxonomic Relations

2

Average Terms per Type

7.00

Usage Example

Use the following code to import this ontology programmatically:

from ontolearner.ontology import GTS

ontology = GTS()
ontology.load("path/to/GTS-ontology.ttl")

# 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