Difference between revisions of "Data source/CZ.REE/data model/record/ico/mapping/CDQ/transformation"
Jump to navigation
Jump to search
(Template parameters updated.) |
(Template parameters updated.) |
||
Line 1: | Line 1: | ||
{{Data model transformation | {{Data model transformation | ||
| data source = Data source/CZ.REE | | data source = Data source/CZ.REE | ||
− | | transformation type = | + | | transformation type = CUSTOM_TRANSFORMATION |
| transformation code = def transform(raw_data): | | transformation code = def transform(raw_data): | ||
if raw_data.startswith("ARES_"): | if raw_data.startswith("ARES_"): |
Latest revision as of 10:11, 23 May 2025
Part of Hierarchical relation between two concepts of the CDQ Data Model. | Data source CZ.REE |
---|---|
Mapping source The source of a data model mapping. | CZ.REE ico , Ares_odpovedi_Odpoved_VBAS_ICO ↣ IDENTIFIER_VALUE
|
Transformation type A type of a transformation applied to a data model mapping. | CUSTOM_TRANSFORMATION"CUSTOM_TRANSFORMATION" is not in the list (UPPER_CASE, LOWER_CASE, CUSTOM) of allowed values for the "Has transformation type" property.
|
Transformation parameter A transformation parameter is an action proccessed by a data model transformation. | n/a |
Description Informal and comprehensive human-readable definition of a concept. | n/a |
Transformation code Any code (in Python, JAVA or other) that will transform values for a given data source attributes.
def transform(raw_data):
if raw_data.startswith("ARES_"):
return raw_data[5:]
return raw_data
if raw_data.startswith("ARES_"):
return raw_data[5:]
return raw_data