You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
data.name is used as a identifier both inside and outside FMU
data.name is translated from "FMU name" to master data-derived name (strat col) on export
Original name retained in (list of) data.alias.
Since the name is used as a identifier, the change can cause problems. Example:
A zone is called "MyZone". When exporting the isochore, it is renamed to "My Zone Fm. Top" to adhere to master data. A third object refers to "MyZone", which now no longer exists.
A current possible solution is to use the alias as a fallback. However, unclear how well this works with Elasticsearch since it is a list.
A perhaps better solution is to include the "FMU name" explicitly:
data:
name: My Correct Name Fm. Topalias:
- MyOriginalNamesource_name: MyOriginalName
We do not want to change data.name due to the amount of contracts and dependencies related to this.
The text was updated successfully, but these errors were encountered:
Perhaps better (although a bit painful, potentially?) to just keep data.name as it was given (name argument) and rather add reference to the stratigraphic column, e.g.
Could potentially move reference to stratigraphic column from masterdata to this reference as well, and only include it when we are actually exporting stratigraphic horizons (?)
data:
name: Whatever2Topstratigraphic:
column: MyStratigraphicColumnname: Whatever Fm. 2 Top
Note that particularly changing the data.name will require discussion, and will potentially be breaking change.
If we want to avoid changing data.name we could consider being more specific on identifiers, so that consumers who care can be explicit, e.g.:
Discussions 2023-12-20:
@daniel-sol @jcrivenaes @HansKallekleiv @tnatt
data.name
is used as a identifier both inside and outside FMUdata.name
is translated from "FMU name" to master data-derived name (strat col) on exportdata.alias
.Since the name is used as a identifier, the change can cause problems. Example:
A zone is called "MyZone". When exporting the isochore, it is renamed to "My Zone Fm. Top" to adhere to master data. A third object refers to "MyZone", which now no longer exists.
A current possible solution is to use the
alias
as a fallback. However, unclear how well this works with Elasticsearch since it is a list.A perhaps better solution is to include the "FMU name" explicitly:
We do not want to change
data.name
due to the amount of contracts and dependencies related to this.The text was updated successfully, but these errors were encountered: