Mappings for Camden and Fitrovia CASA data

This commit is contained in:
Tom Russell 2018-08-01 17:06:00 +01:00
parent 69bb6c5790
commit 981d3608a2
2 changed files with 13 additions and 0 deletions

7
etl/join-camden.json Normal file
View File

@ -0,0 +1,7 @@
{
"crs": 27700,
"mapping": [
["Date_sou_1", "date_source", "lambda old_, new_: new_"],
["Year_C", "date_year", "lambda old_, new_: int(new_)"]
]
}

6
etl/join-fitzrovia.json Normal file
View File

@ -0,0 +1,6 @@
{
"crs": 27700,
"mapping": [
["Storeys", "size_storeys", "lambda old_, new_: int(new_) if new_ is not None else None"]
]
}