-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updating to new Component Models structure
- Loading branch information
1 parent
446281d
commit 1e64e72
Showing
17 changed files
with
76 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Component Models | ||
|
||
This section lists the various Component Models within this Supermodel. | ||
|
||
All data created according to any of the Component Models, to be used in this Supermodel's context, _MUST_ also conform to this Supermodel's [Backbone Model](../backbone.md). | ||
|
||
Note that useful data may be created that is valid according to individual Component Models and not this Supermodels' Backbone Model for use outside this Supermodel's context. | ||
|
||
## Profiles | ||
|
||
Many of the Component Models here are defined as a _profile_, by which we mean that it is a model that draws from other Standard's models and constrains and extends their elements, rather than creating its own elements. | ||
|
||
Profiles are used to specialise general-purpose models while remaining conformant with them. | ||
|
||
Formally, any data created according to a _profile_ _MUST_ conform to all the models it profiles, as per the [Profiles Vocabulary](../background.md#profiles-vocabulary-prof) rules. | ||
|
||
Profiles may profile multiple Standards, bringing together all the parts needed for a particular task | ||
|
||
## List of Component Models | ||
|
||
Several of the Component Models within this Supermodel are full defined here. Others are defined elsewhere and just referred to from here. The table below lists the current Component Models. | ||
|
||
| **Model** | **Domain(s)** | **Persistent Identifier** | **Notes** | | ||
|---------------------------------------------------------------|------------------------------------------------------|---------------------------------------|------------------------------------------------------------------| | ||
| [Features Hierarchy Model](features-hierarchy) | geospatial spatial features | `https://linked.data.gov.au/def/xxx` | Coming... | | ||
| [Sites & Admin Features Model](sites-admin) | man-made & administrative spatial features | `https://linked.data.gov.au/def/xxx` | child model of [Features Hierarchy Model](features-hierarchy.md) | | ||
| [Bore Model](bore) | bores, boreholes, wells etc | `https://linked.data.gov.au/def/bore` | child model of [Sites & Admin Features Model](sites-admin.md) | | ||
| [Mine Model](mine) | mines | `https://linked.data.gov.au/def/mine` | child model of [Sites & Admin Features Model](sites-admin.md) | | ||
| [Mining Authorisation Model](components/mining-authorisation) | tenements, permits, licenses etc., to do with mining | `https://linked.data.gov.au/def/xxx` | child model of [Sites & Admin Features Model](sites-admin.md) | | ||
| [GeoFeatures](geofeature) | geospatial spatial features | `https://linked.data.gov.au/def/xxx` | child model of [Features Hierarchy Model](features-hierarchy.md) || | ||
| [Geosample Model](geosample) | samples, sampling | `https://linked.data.gov.au/def/xxx` | Coming... | | ||
| [Resource Occurrence Model](resource-occurrence) | spatial position and values of resources | `https://linked.data.gov.au/def/xxx` | child model of [GeoFeatures Model](features-hierarchy.md) | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Mining Authorisation | ||
|
||
## Overview | ||
|
||
<a href="../../assets/authorities-Overview.svg"> | ||
<figure id="figure-bh" markdown> | ||
![](../assets/authorities-Overview.svg) | ||
<figcaption>Figure AO: Mining Authorisation Model overview</figcaption> | ||
</figure> | ||
</a> | ||
|
||
This Mining Authorisation Model caters for legal and policy instruments that give permission or exclusivity to own/operate mining-related operations, usually in designated areas. | ||
|
||
_This model has only just been started._ | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
PREFIX owl: <http://www.w3.org/2002/07/owl#> | ||
|
||
<https://linked.data.gov.au/def/tenement> | ||
<https://linked.data.gov.au/def/geofeature> | ||
a owl:Ontology ; | ||
. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
PREFIX owl: <http://www.w3.org/2002/07/owl#> | ||
|
||
<https://linked.data.gov.au/def/mining-authorisation> | ||
a owl:Ontology ; | ||
. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
PREFIX owl: <http://www.w3.org/2002/07/owl#> | ||
|
||
<https://linked.data.gov.au/def/mining-authorisation> | ||
a owl:Ontology ; | ||
. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
PREFIX owl: <http://www.w3.org/2002/07/owl#> | ||
|
||
<https://linked.data.gov.au/def/geofeature> | ||
a owl:Ontology ; | ||
. |
Empty file.