data = rawData.map((raw) => ({
id: raw.museum_id,
name: raw.Name_of_museum,
address:
raw.Address_line_1 && raw.Address_line_2
? raw.Address_line_1 + "\n" + raw.Address_line_2
: raw.Address_line_1,
city: raw["Village,_Town_or_City"],
opened: raw.Year_opened.split(":").filter((o) => o !== "9999"),
closed: raw.Year_closed.split(":").filter((o) => o !== "9999"),
postcode: raw.Postcode,
latitude: raw.Latitude,
longitude: raw.Longitude,
adminArea: raw.Admin_area,
accreditation: raw.Accreditation,
size: raw.Size,
sizeProvenance: raw.Size_provenance,
domusSubjectMatter: raw.DOMUS_Subject_Matter,
domusID: raw.DOMUS_identifier,
primaryDataID: raw.Identifier_used_in_primary_data_source,
primaryDataProvenance: raw.Primary_provenance_of_data,
notes: raw.Notes,
areaDeprivation: {
index: raw.Area_Deprivation_index,
index: raw.Area_Deprivation_index,
crime: raw.Area_Deprivation_index_crime,
education: raw.Area_Deprivation_index_education,
employment: raw.Area_Deprivation_index_employment,
health: raw.Area_Deprivation_index_health,
housing: raw.Area_Deprivation_index_housing,
income: raw.Area_Deprivation_index_income,
services: raw.Area_Deprivation_index_services
},
areaGeodemographic: {
group: raw.Area_Geodemographic_group,
groupCode: raw.Area_Geodemographic_group_code,
subgroup: raw.Area_Geodemographic_subgroup,
subgroupCode: raw.Area_Geodemographic_subgroup_code,
supergroup: raw.Area_Geodemographic_supergroup,
supergroupCode: raw.Area_Geodemographic_supergroup_code
},
raw
}))