-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ENH: Add realization and iteration object metadata definitions (#785)
- Loading branch information
1 parent
53fcc5e
commit 01d77c2
Showing
7 changed files
with
498 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
# Example metadata for an FMU Iteration object. | ||
|
||
$schema: https://main-fmu-schemas-dev.radix.equinor.com/schemas/0.8.0/fmu_results.json | ||
version: "0.8.0" | ||
source: fmu | ||
tracklog: | ||
- datetime: 2020-10-28T14:28:02 | ||
user: | ||
id: peesv | ||
event: created | ||
- datetime: 2020-10-28T14:46:14 | ||
user: | ||
id: peesv | ||
event: updated | ||
|
||
class: iteration # class is the main identifier of the data type. | ||
|
||
fmu: # the fmu-block contains information directly related to the FMU context | ||
model: | ||
name: ff | ||
revision: 21.0.0.dev | ||
description: | ||
- detailed description | ||
- optional | ||
|
||
case: | ||
name: MyCaseName | ||
uuid: 8bb56d60-8758-481a-89a4-6bac8561d38e | ||
user: | ||
id: jriv # $USER from ERT | ||
description: | ||
- yet other detailed description | ||
- optional | ||
|
||
context: | ||
stage: iteration | ||
|
||
iteration: | ||
id: 0 | ||
name: iter-0 | ||
uuid: fd6e8f2a-f298-434a-80f4-90f0f6f84688 | ||
|
||
access: | ||
asset: | ||
name: Drogon | ||
classification: internal | ||
|
||
masterdata: | ||
smda: | ||
country: | ||
- identifier: Norway | ||
uuid: ad214d85-8a1d-19da-e053-c918a4889309 | ||
discovery: | ||
- short_identifier: DROGON | ||
uuid: 00000000-0000-0000-0000-000000000000 # mock uuid for Drogon | ||
field: | ||
- identifier: DROGON | ||
uuid: 00000000-0000-0000-0000-000000000000 # mock uuid for Drogon | ||
coordinate_system: | ||
identifier: ST_WGS84_UTM37N_P32637 | ||
uuid: ad214d85-dac7-19da-e053-c918a4889309 | ||
stratigraphic_column: | ||
identifier: DROGON_2020 | ||
uuid: 00000000-0000-0000-0000-000000000000 # mock uuid for Drogon |
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,72 @@ | ||
# Example metadata for an FMU Realization object. | ||
|
||
$schema: https://main-fmu-schemas-dev.radix.equinor.com/schemas/0.8.0/fmu_results.json | ||
version: "0.8.0" | ||
source: fmu | ||
tracklog: | ||
- datetime: 2020-10-28T14:28:02 | ||
user: | ||
id: peesv | ||
event: created | ||
- datetime: 2020-10-28T14:46:14 | ||
user: | ||
id: peesv | ||
event: updated | ||
|
||
class: realization # class is the main identifier of the data type. | ||
|
||
fmu: # the fmu-block contains information directly related to the FMU context | ||
model: | ||
name: ff | ||
revision: 21.0.0.dev | ||
description: | ||
- detailed description | ||
- optional | ||
|
||
case: | ||
name: MyCaseName | ||
uuid: 8bb56d60-8758-481a-89a4-6bac8561d38e | ||
user: | ||
id: jriv # $USER from ERT | ||
description: | ||
- yet other detailed description | ||
- optional | ||
|
||
context: | ||
stage: realization | ||
|
||
iteration: | ||
id: 0 | ||
name: iter-0 | ||
uuid: fd6e8f2a-f298-434a-80f4-90f0f6f84688 | ||
|
||
realization: | ||
id: 0 | ||
name: realization-0 | ||
uuid: 8ba597f5-07e0-a789-b9ad-fd16b1966f58 | ||
parameters: | ||
param1: val1 | ||
param2: val2 | ||
|
||
access: | ||
asset: | ||
name: Drogon | ||
classification: internal | ||
|
||
masterdata: | ||
smda: | ||
country: | ||
- identifier: Norway | ||
uuid: ad214d85-8a1d-19da-e053-c918a4889309 | ||
discovery: | ||
- short_identifier: DROGON | ||
uuid: 00000000-0000-0000-0000-000000000000 # mock uuid for Drogon | ||
field: | ||
- identifier: DROGON | ||
uuid: 00000000-0000-0000-0000-000000000000 # mock uuid for Drogon | ||
coordinate_system: | ||
identifier: ST_WGS84_UTM37N_P32637 | ||
uuid: ad214d85-dac7-19da-e053-c918a4889309 | ||
stratigraphic_column: | ||
identifier: DROGON_2020 | ||
uuid: 00000000-0000-0000-0000-000000000000 # mock uuid for Drogon |
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
Oops, something went wrong.