From 981d3608a2d922198947ee4c08f88be012c055f1 Mon Sep 17 00:00:00 2001 From: Tom Russell Date: Wed, 1 Aug 2018 17:06:00 +0100 Subject: [PATCH] Mappings for Camden and Fitrovia CASA data --- etl/join-camden.json | 7 +++++++ etl/join-fitzrovia.json | 6 ++++++ 2 files changed, 13 insertions(+) create mode 100644 etl/join-camden.json create mode 100644 etl/join-fitzrovia.json diff --git a/etl/join-camden.json b/etl/join-camden.json new file mode 100644 index 00000000..a761eb9b --- /dev/null +++ b/etl/join-camden.json @@ -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_)"] + ] +} \ No newline at end of file diff --git a/etl/join-fitzrovia.json b/etl/join-fitzrovia.json new file mode 100644 index 00000000..d0646c80 --- /dev/null +++ b/etl/join-fitzrovia.json @@ -0,0 +1,6 @@ +{ + "crs": 27700, + "mapping": [ + ["Storeys", "size_storeys", "lambda old_, new_: int(new_) if new_ is not None else None"] + ] +} \ No newline at end of file