Data source/JP.CR/data model/corporations/postCode/mapping/CDQ/transformation
Jump to navigation
Jump to search
| Part of Hierarchical relation between two concepts of the CDQ Data Model. | Data source JP.CR |
|---|---|
| Mapping source The source of a data model mapping. | JP.CR postCode ↣ POST_CODE_VALUE, POST_CODE_TYPE
|
| Transformation type A type of a transformation applied to a data model mapping. | CUSTOM
|
| 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.
import re
POSTCODE_VALUE = "address.postCodes[0].value"
POSTCODE_TYPE = "address.postCodes[0].type"
def transform(raw_data):
raw_data = raw_data[:3] + '-' + raw_data[3:]
result = {}
result.update({POSTCODE_VALUE: raw_data, POSTCODE_TYPE: "REGULAR"})
return result
POSTCODE_VALUE = "address.postCodes[0].value"
POSTCODE_TYPE = "address.postCodes[0].type"
def transform(raw_data):
raw_data = raw_data[:3] + '-' + raw_data[3:]
result = {}
result.update({POSTCODE_VALUE: raw_data, POSTCODE_TYPE: "REGULAR"})
return result