diff --git a/scripts/lcip/transform.py b/scripts/lcip/transform.py index 909e70d..0654a92 100644 --- a/scripts/lcip/transform.py +++ b/scripts/lcip/transform.py @@ -128,11 +128,13 @@ def clean_theme(theme): process_wards(ward_data, sheet, theme, name, f'{clean_theme(theme)}') elif not theme in diversity_metrics: theme_df = sheet[sheet['THEME'] == theme] + # theme_df = theme_df.loc[theme_df['TOTAL']!=0] theme_df = theme_df.pivot_table(index='THEME', columns='METRIC', values='TOTAL') theme_df = theme_df.round(0).astype(int) theme_df.columns = theme_df.columns.str.replace(',',' ') theme_filename = clean_theme(theme) theme_df = theme_df.fillna(0) + theme_df["total"] = theme_df.sum(axis=1) if not theme_df.empty: theme_df.to_csv(os.path.join(theme_path, theme_filename), index=True) diff --git a/src/_data/viz/lcip/activate/age_applied.csv b/src/_data/viz/lcip/activate/age_applied.csv index 0327b9f..af53810 100644 --- a/src/_data/viz/lcip/activate/age_applied.csv +++ b/src/_data/viz/lcip/activate/age_applied.csv @@ -1,2 +1,2 @@ -THEME,18 - 24,25 - 34,35 - 44,45 - 54,55 - 64,65 - 74,75 - 84,85+,Not known,Prefer not to say -AGE - APPLIED,1,3,3,0,0,0,0,0,0,0 +THEME,18 - 24,25 - 34,35 - 44,45 - 54,55 - 64,65 - 74,75 - 84,85+,Not known,Prefer not to say,total +AGE - APPLIED,1,3,3,0,0,0,0,0,0,0,7 diff --git a/src/_data/viz/lcip/activate/age_funded.csv b/src/_data/viz/lcip/activate/age_funded.csv index 72ecec8..898a7ea 100644 --- a/src/_data/viz/lcip/activate/age_funded.csv +++ b/src/_data/viz/lcip/activate/age_funded.csv @@ -1,2 +1,2 @@ -THEME,18 - 24,25 - 34,35 - 44,45 - 54,55 - 64,65 - 74,75 - 84,85+,Not known,Prefer not to say -AGE - FUNDED,1,3,3,0,0,0,0,0,0,0 +THEME,18 - 24,25 - 34,35 - 44,45 - 54,55 - 64,65 - 74,75 - 84,85+,Not known,Prefer not to say,total +AGE - FUNDED,1,3,3,0,0,0,0,0,0,0,7 diff --git a/src/_data/viz/lcip/activate/applications_received.csv b/src/_data/viz/lcip/activate/applications_received.csv index 4bad147..1eaf99c 100644 --- a/src/_data/viz/lcip/activate/applications_received.csv +++ b/src/_data/viz/lcip/activate/applications_received.csv @@ -1,2 +1,2 @@ -THEME,No. of eligible applications,No. of ineligible,Total amount of funding requested (£),from an organisation -APPLICATIONS RECEIVED,5,0,17600,5 +THEME,No. of eligible applications,No. of ineligible,Total amount of funding requested (£),from an organisation,total +APPLICATIONS RECEIVED,5,0,17600,5,17610 diff --git a/src/_data/viz/lcip/activate/artform_applied.csv b/src/_data/viz/lcip/activate/artform_applied.csv index 7a2d8bc..8e0b17d 100644 --- a/src/_data/viz/lcip/activate/artform_applied.csv +++ b/src/_data/viz/lcip/activate/artform_applied.csv @@ -1,2 +1,2 @@ -THEME,Circus,Combined Arts,Crafts,Dance,Design,Digital Media,Festival/Carnival,Film,Literature / Poetry / Spoken Word,Live Art,Music,Photography,Theatre,Visual Art -ARTFORM - APPLIED,0,0,0,0,0,0,2,0,0,0,1,0,0,0 +THEME,Circus,Combined Arts,Crafts,Dance,Design,Digital Media,Festival/Carnival,Film,Literature / Poetry / Spoken Word,Live Art,Music,Photography,Theatre,Visual Art,total +ARTFORM - APPLIED,0,0,0,0,0,0,2,0,0,0,1,0,0,0,3 diff --git a/src/_data/viz/lcip/activate/artform_funded.csv b/src/_data/viz/lcip/activate/artform_funded.csv index 9f5d4ba..70fe52e 100644 --- a/src/_data/viz/lcip/activate/artform_funded.csv +++ b/src/_data/viz/lcip/activate/artform_funded.csv @@ -1,2 +1,2 @@ -THEME,Circus,Combined Arts,Crafts,Dance,Design,Digital Media,Festival/Carnival,Film,Literature / Poetry / Spoken Word,Live Art,Music,Photography,Theatre,Visual Art -ARTFORM - FUNDED,0,0,0,0,0,0,2,0,0,0,1,0,0,0 +THEME,Circus,Combined Arts,Crafts,Dance,Design,Digital Media,Festival/Carnival,Film,Literature / Poetry / Spoken Word,Live Art,Music,Photography,Theatre,Visual Art,total +ARTFORM - FUNDED,0,0,0,0,0,0,2,0,0,0,1,0,0,0,3 diff --git a/src/_data/viz/lcip/activate/carer_applied.csv b/src/_data/viz/lcip/activate/carer_applied.csv index bb5e2f1..03817a3 100644 --- a/src/_data/viz/lcip/activate/carer_applied.csv +++ b/src/_data/viz/lcip/activate/carer_applied.csv @@ -1,2 +1,2 @@ -THEME,Do you consider yourself to be a carer?,No,Not known,Prefer not to say,Yes -CARER - APPLIED,0,0,6,0,0 +THEME,Do you consider yourself to be a carer?,No,Not known,Prefer not to say,Yes,total +CARER - APPLIED,0,0,6,0,0,6 diff --git a/src/_data/viz/lcip/activate/carer_funded.csv b/src/_data/viz/lcip/activate/carer_funded.csv index 9b9d87c..fcb22b3 100644 --- a/src/_data/viz/lcip/activate/carer_funded.csv +++ b/src/_data/viz/lcip/activate/carer_funded.csv @@ -1,2 +1,2 @@ -THEME,Do you consider yourself to be a carer?,No,Not known,Prefer not to say,Yes -CARER - FUNDED,0,0,6,0,0 +THEME,Do you consider yourself to be a carer?,No,Not known,Prefer not to say,Yes,total +CARER - FUNDED,0,0,6,0,0,6 diff --git a/src/_data/viz/lcip/activate/contribution_to_workforce.csv b/src/_data/viz/lcip/activate/contribution_to_workforce.csv index 50b7e2a..fe09e85 100644 --- a/src/_data/viz/lcip/activate/contribution_to_workforce.csv +++ b/src/_data/viz/lcip/activate/contribution_to_workforce.csv @@ -1,2 +1,2 @@ -THEME,Artists/Creatives,Total,Volunteers -CONTRIBUTION TO WORKFORCE,70430,70646,216 +THEME,Artists/Creatives,Total,Volunteers,total +CONTRIBUTION TO WORKFORCE,70430,70646,216,141292 diff --git a/src/_data/viz/lcip/activate/disability_applied.csv b/src/_data/viz/lcip/activate/disability_applied.csv index 4e36b4b..2a16c3a 100644 --- a/src/_data/viz/lcip/activate/disability_applied.csv +++ b/src/_data/viz/lcip/activate/disability_applied.csv @@ -1,2 +1,2 @@ -THEME,Hearing impairment,Learning disability,Long-standing illness or health condition,Mental health condition,Neuro Diverse,Not known,Other,Physical impairment,Prefer not to say,Visual impairment -DISABILITY - APPLIED,0,1,0,1,0,0,0,0,1,0 +THEME,Hearing impairment,Learning disability,Long-standing illness or health condition,Mental health condition,Neuro Diverse,Not known,Other,Physical impairment,Prefer not to say,Visual impairment,total +DISABILITY - APPLIED,0,1,0,1,0,0,0,0,1,0,3 diff --git a/src/_data/viz/lcip/activate/disability_funded.csv b/src/_data/viz/lcip/activate/disability_funded.csv index 4f1d5b5..314fc32 100644 --- a/src/_data/viz/lcip/activate/disability_funded.csv +++ b/src/_data/viz/lcip/activate/disability_funded.csv @@ -1,2 +1,2 @@ -THEME,Hearing impairment,Learning disability,Long-standing illness or health condition,Mental health condition,Neuro Diverse,Not known,Other,Physical impairment,Prefer not to say,Visual impairment -DISABILITY - FUNDED,0,1,0,1,0,0,0,0,1,0 +THEME,Hearing impairment,Learning disability,Long-standing illness or health condition,Mental health condition,Neuro Diverse,Not known,Other,Physical impairment,Prefer not to say,Visual impairment,total +DISABILITY - FUNDED,0,1,0,1,0,0,0,0,1,0,3 diff --git a/src/_data/viz/lcip/activate/ethnic_origin_applied.csv b/src/_data/viz/lcip/activate/ethnic_origin_applied.csv index 5fdbcd5..19bf2ff 100644 --- a/src/_data/viz/lcip/activate/ethnic_origin_applied.csv +++ b/src/_data/viz/lcip/activate/ethnic_origin_applied.csv @@ -1,2 +1,2 @@ -THEME,African,Any other Asian background,Any other Black background,Any other background,Any other mixed/multiple ethnic group,Any other white background,Arab,Asian or Asian British,Bangladeshi,Black or Black British,Caribbean,Chinese,Indian,Kashmiri,Mixed/ multiple ethnic group,Other ethnic groups,Pakistani,Prefer not to say,White,White British,White English,White Gypsy or Traveller,White Irish,White Northern Irish,White Scottish,White Welsh,White and Asian,White and Black African,White and Black Caribbean -ETHNIC ORIGIN - APPLIED,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0 +THEME,African,Any other Asian background,Any other Black background,Any other background,Any other mixed/multiple ethnic group,Any other white background,Arab,Asian or Asian British,Bangladeshi,Black or Black British,Caribbean,Chinese,Indian,Kashmiri,Mixed/ multiple ethnic group,Other ethnic groups,Pakistani,Prefer not to say,White,White British,White English,White Gypsy or Traveller,White Irish,White Northern Irish,White Scottish,White Welsh,White and Asian,White and Black African,White and Black Caribbean,total +ETHNIC ORIGIN - APPLIED,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,6 diff --git a/src/_data/viz/lcip/activate/ethnic_origin_funded.csv b/src/_data/viz/lcip/activate/ethnic_origin_funded.csv index 89eaee4..298d623 100644 --- a/src/_data/viz/lcip/activate/ethnic_origin_funded.csv +++ b/src/_data/viz/lcip/activate/ethnic_origin_funded.csv @@ -1,2 +1,2 @@ -THEME,African,Any other Asian background,Any other Black background,Any other background,Any other mixed/multiple ethnic group,Any other white background,Arab,Asian or Asian British,Bangladeshi,Black or Black British,Caribbean,Chinese,Indian,Kashmiri,Mixed/ multiple ethnic group,Other ethnic groups,Pakistani,Prefer not to say,White,White British,White English,White Gypsy or Traveller,White Irish,White Northern Irish,White Scottish,White Welsh,White and Asian,White and Black African,White and Black Caribbean -ETHNIC ORIGIN - FUNDED,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0 +THEME,African,Any other Asian background,Any other Black background,Any other background,Any other mixed/multiple ethnic group,Any other white background,Arab,Asian or Asian British,Bangladeshi,Black or Black British,Caribbean,Chinese,Indian,Kashmiri,Mixed/ multiple ethnic group,Other ethnic groups,Pakistani,Prefer not to say,White,White British,White English,White Gypsy or Traveller,White Irish,White Northern Irish,White Scottish,White Welsh,White and Asian,White and Black African,White and Black Caribbean,total +ETHNIC ORIGIN - FUNDED,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,6 diff --git a/src/_data/viz/lcip/activate/funding.csv b/src/_data/viz/lcip/activate/funding.csv index b20008f..cd61342 100644 --- a/src/_data/viz/lcip/activate/funding.csv +++ b/src/_data/viz/lcip/activate/funding.csv @@ -1,2 +1,2 @@ -THEME,Funding invested from Leeds City Council,Funding invested from others -FUNDING,7800,9800 +THEME,Funding invested from Leeds City Council,Funding invested from others,total +FUNDING,7800,9800,17600 diff --git a/src/_data/viz/lcip/activate/funding_advice_sessions.csv b/src/_data/viz/lcip/activate/funding_advice_sessions.csv index cb83eff..5d04204 100644 --- a/src/_data/viz/lcip/activate/funding_advice_sessions.csv +++ b/src/_data/viz/lcip/activate/funding_advice_sessions.csv @@ -1,2 +1,2 @@ -THEME,No. of funding surgeries booked,No. of funding surgeries offered,No. of in person sessions,No. of online/Telephone sessions -FUNDING ADVICE SESSIONS,0,0,0,0 +THEME,No. of funding surgeries booked,No. of funding surgeries offered,No. of in person sessions,No. of online/Telephone sessions,total +FUNDING ADVICE SESSIONS,0,0,0,0,0 diff --git a/src/_data/viz/lcip/activate/gender_registered_at_birth_applied.csv b/src/_data/viz/lcip/activate/gender_registered_at_birth_applied.csv index 8a360de..7829a31 100644 --- a/src/_data/viz/lcip/activate/gender_registered_at_birth_applied.csv +++ b/src/_data/viz/lcip/activate/gender_registered_at_birth_applied.csv @@ -1,2 +1,2 @@ -THEME,Not known,Prefer not to say,Total -GENDER REGISTERED AT BIRTH - APPLIED,0,0,0 +THEME,Not known,Prefer not to say,Total,total +GENDER REGISTERED AT BIRTH - APPLIED,0,0,0,0 diff --git a/src/_data/viz/lcip/activate/gender_registered_at_birth_funded.csv b/src/_data/viz/lcip/activate/gender_registered_at_birth_funded.csv index 653bd15..a6160f6 100644 --- a/src/_data/viz/lcip/activate/gender_registered_at_birth_funded.csv +++ b/src/_data/viz/lcip/activate/gender_registered_at_birth_funded.csv @@ -1,2 +1,2 @@ -THEME,Not known,Prefer not to say,Total -GENDER REGISTERED AT BIRTH - FUNDED,0,0,0 +THEME,Not known,Prefer not to say,Total,total +GENDER REGISTERED AT BIRTH - FUNDED,0,0,0,0 diff --git a/src/_data/viz/lcip/activate/leeds_culture_programmes_website.csv b/src/_data/viz/lcip/activate/leeds_culture_programmes_website.csv index d8b83eb..02fadba 100644 --- a/src/_data/viz/lcip/activate/leeds_culture_programmes_website.csv +++ b/src/_data/viz/lcip/activate/leeds_culture_programmes_website.csv @@ -1,2 +1,2 @@ -THEME,No. applications started,No. of applications completed -LEEDS CULTURE PROGRAMMES WEBSITE,0,0 +THEME,No. applications started,No. of applications completed,total +LEEDS CULTURE PROGRAMMES WEBSITE,0,0,0 diff --git a/src/_data/viz/lcip/activate/project_outputs_applied.csv b/src/_data/viz/lcip/activate/project_outputs_applied.csv index 057778e..1858112 100644 --- a/src/_data/viz/lcip/activate/project_outputs_applied.csv +++ b/src/_data/viz/lcip/activate/project_outputs_applied.csv @@ -1,2 +1,2 @@ -THEME,Days employment for freelance artists and creatives,Learning or participation sessions,New cultural activities/products,Performances or exhibition days,Training opportunities,Volunteer opportunities -PROJECT OUTPUTS - APPLIED,336,42,14,17,528,120 +THEME,Days employment for freelance artists and creatives,Learning or participation sessions,New cultural activities/products,Performances or exhibition days,Training opportunities,Volunteer opportunities,total +PROJECT OUTPUTS - APPLIED,336,42,14,17,528,120,1057 diff --git a/src/_data/viz/lcip/activate/project_outputs_funded.csv b/src/_data/viz/lcip/activate/project_outputs_funded.csv index 0c757bb..7fbe195 100644 --- a/src/_data/viz/lcip/activate/project_outputs_funded.csv +++ b/src/_data/viz/lcip/activate/project_outputs_funded.csv @@ -1,2 +1,2 @@ -THEME,Days employment for freelance artists and creatives,Learning or participation sessions,New cultural activities/products,Performances or exhibition days,Training opportunities,Volunteer opportunities -PROJECT OUTPUTS - FUNDED,336,42,14,17,528,120 +THEME,Days employment for freelance artists and creatives,Learning or participation sessions,New cultural activities/products,Performances or exhibition days,Training opportunities,Volunteer opportunities,total +PROJECT OUTPUTS - FUNDED,336,42,14,17,528,120,1057 diff --git a/src/_data/viz/lcip/activate/reach.csv b/src/_data/viz/lcip/activate/reach.csv index e7bb42f..df07ad3 100644 --- a/src/_data/viz/lcip/activate/reach.csv +++ b/src/_data/viz/lcip/activate/reach.csv @@ -1,2 +1,2 @@ -THEME,Audience - in person,Broadcast/online audiences,Participants - in person -REACH,196048,25000,76548 +THEME,Audience - in person,Broadcast/online audiences,Participants - in person,total +REACH,196048,25000,76548,297596 diff --git a/src/_data/viz/lcip/activate/religious_belief_applied.csv b/src/_data/viz/lcip/activate/religious_belief_applied.csv index c7aa134..2d00063 100644 --- a/src/_data/viz/lcip/activate/religious_belief_applied.csv +++ b/src/_data/viz/lcip/activate/religious_belief_applied.csv @@ -1,2 +1,2 @@ -THEME,Buddhist,Christian,Hindu,Jewish,Muslim,No religion/belief,Not known,Other,Prefer not to say,Sikh -RELIGIOUS BELIEF - APPLIED,0,0,0,0,0,6,0,0,0,0 +THEME,Buddhist,Christian,Hindu,Jewish,Muslim,No religion/belief,Not known,Other,Prefer not to say,Sikh,total +RELIGIOUS BELIEF - APPLIED,0,0,0,0,0,6,0,0,0,0,6 diff --git a/src/_data/viz/lcip/activate/religious_belief_funded.csv b/src/_data/viz/lcip/activate/religious_belief_funded.csv index 217ee10..31d30ac 100644 --- a/src/_data/viz/lcip/activate/religious_belief_funded.csv +++ b/src/_data/viz/lcip/activate/religious_belief_funded.csv @@ -1,2 +1,2 @@ -THEME,Buddhist,Christian,Hindu,Jewish,Muslim,No religion/belief,Not known,Other,Prefer not to say,Sikh -RELIGIOUS BELIEF - FUNDED,0,0,0,0,0,6,0,0,0,0 +THEME,Buddhist,Christian,Hindu,Jewish,Muslim,No religion/belief,Not known,Other,Prefer not to say,Sikh,total +RELIGIOUS BELIEF - FUNDED,0,0,0,0,0,6,0,0,0,0,6 diff --git a/src/_data/viz/lcip/activate/results.csv b/src/_data/viz/lcip/activate/results.csv index cdde2ae..22d5c02 100644 --- a/src/_data/viz/lcip/activate/results.csv +++ b/src/_data/viz/lcip/activate/results.csv @@ -1,2 +1,2 @@ -THEME,No. of withdrawn by applicant,No. of withdrawn by organisation,No. of funded individual artists,No. of funded organisations,No. of unsucessful artist applications,No. of unsucessful organisations applications,Total amount awarded to individual artists,Total amount awarded to organisations (£) -RESULTS,0,0,0,5,0,0,0,17600 +THEME,No. of withdrawn by applicant,No. of withdrawn by organisation,No. of funded individual artists,No. of funded organisations,No. of unsucessful artist applications,No. of unsucessful organisations applications,Total amount awarded to individual artists,Total amount awarded to organisations (£),total +RESULTS,0,0,0,5,0,0,0,17600,17605 diff --git a/src/_data/viz/lcip/activate/sex_applied.csv b/src/_data/viz/lcip/activate/sex_applied.csv index 5e9cced..49d4678 100644 --- a/src/_data/viz/lcip/activate/sex_applied.csv +++ b/src/_data/viz/lcip/activate/sex_applied.csv @@ -1,2 +1,2 @@ -THEME,Female,Male,Non Binary,Not known,Other,Prefer not to say -SEX - APPLIED,2,4,0,0,0,0 +THEME,Female,Male,Non Binary,Not known,Other,Prefer not to say,total +SEX - APPLIED,2,4,0,0,0,0,6 diff --git a/src/_data/viz/lcip/activate/sex_funded.csv b/src/_data/viz/lcip/activate/sex_funded.csv index de726e5..4e8ca13 100644 --- a/src/_data/viz/lcip/activate/sex_funded.csv +++ b/src/_data/viz/lcip/activate/sex_funded.csv @@ -1,2 +1,2 @@ -THEME,Female,Male,Non Binary,Not known,Other,Prefer not to say -SEX - FUNDED,2,4,0,0,0,0 +THEME,Female,Male,Non Binary,Not known,Other,Prefer not to say,total +SEX - FUNDED,2,4,0,0,0,0,6 diff --git a/src/_data/viz/lcip/activate/sexual_orientation_applied.csv b/src/_data/viz/lcip/activate/sexual_orientation_applied.csv index 570cab6..9b85ba1 100644 --- a/src/_data/viz/lcip/activate/sexual_orientation_applied.csv +++ b/src/_data/viz/lcip/activate/sexual_orientation_applied.csv @@ -1,2 +1,2 @@ -THEME,Bi-sexual,Gay,Heterosexual or Straight,Lesbian,Not known,Other,Prefer not to say -SEXUAL ORIENTATION - APPLIED,0,1,5,0,0,0,0 +THEME,Bi-sexual,Gay,Heterosexual or Straight,Lesbian,Not known,Other,Prefer not to say,total +SEXUAL ORIENTATION - APPLIED,0,1,5,0,0,0,0,6 diff --git a/src/_data/viz/lcip/activate/sexual_orientation_funded.csv b/src/_data/viz/lcip/activate/sexual_orientation_funded.csv index 24dd7f1..951803e 100644 --- a/src/_data/viz/lcip/activate/sexual_orientation_funded.csv +++ b/src/_data/viz/lcip/activate/sexual_orientation_funded.csv @@ -1,2 +1,2 @@ -THEME,Bi-sexual,Gay,Heterosexual or Straight,Lesbian,Not known,Other,Prefer not to say -SEXUAL ORIENTATION - FUNDED,0,1,5,0,0,0,0 +THEME,Bi-sexual,Gay,Heterosexual or Straight,Lesbian,Not known,Other,Prefer not to say,total +SEXUAL ORIENTATION - FUNDED,0,1,5,0,0,0,0,6 diff --git a/src/_data/viz/lcip/activate/target_groups_applied.csv b/src/_data/viz/lcip/activate/target_groups_applied.csv index 3a5cec9..bae5b0d 100644 --- a/src/_data/viz/lcip/activate/target_groups_applied.csv +++ b/src/_data/viz/lcip/activate/target_groups_applied.csv @@ -1,2 +1,2 @@ -THEME,Carers,Disabled people,Ethnically diverse people,LGBT+,Men,Mental health,Non-binary people,Not targeted at a specific group,Older people (over 55),People in school (teachers governors support staff etc),People with challenging lives (e.g. those who are socially excluded those from a low-income household young people at risk in care or NEET carers),Pupils in schools,Religious or Belief Communities,Women,Younger people (under 25) -TARGET GROUPS - APPLIED,0,0,2,0,0,0,0,4,0,0,1,1,0,0,0 +THEME,Carers,Disabled people,Ethnically diverse people,LGBT+,Men,Mental health,Non-binary people,Not targeted at a specific group,Older people (over 55),People in school (teachers governors support staff etc),People with challenging lives (e.g. those who are socially excluded those from a low-income household young people at risk in care or NEET carers),Pupils in schools,Religious or Belief Communities,Women,Younger people (under 25),total +TARGET GROUPS - APPLIED,0,0,2,0,0,0,0,4,0,0,1,1,0,0,0,8 diff --git a/src/_data/viz/lcip/activate/target_groups_funded.csv b/src/_data/viz/lcip/activate/target_groups_funded.csv index 1aa02ef..1c1c707 100644 --- a/src/_data/viz/lcip/activate/target_groups_funded.csv +++ b/src/_data/viz/lcip/activate/target_groups_funded.csv @@ -1,2 +1,2 @@ -THEME,Carers,Disabled people,Ethnically diverse people,LGBT+,Men,Mental health,Non-binary people,Not targeted at a specific group,Older people (over 55),People in school (teachers governors support staff etc),People with challenging lives (e.g. those who are socially excluded those from a low-income household young people at risk in care or NEET carers),Pupils in schools,Religious or Belief Communities,Women,Younger people (under 25) -TARGET GROUPS - FUNDED,0,0,2,0,0,0,0,4,0,0,1,1,0,0,0 +THEME,Carers,Disabled people,Ethnically diverse people,LGBT+,Men,Mental health,Non-binary people,Not targeted at a specific group,Older people (over 55),People in school (teachers governors support staff etc),People with challenging lives (e.g. those who are socially excluded those from a low-income household young people at risk in care or NEET carers),Pupils in schools,Religious or Belief Communities,Women,Younger people (under 25),total +TARGET GROUPS - FUNDED,0,0,2,0,0,0,0,4,0,0,1,1,0,0,0,8 diff --git a/src/_data/viz/lcip/activate/total_artform_applied.csv b/src/_data/viz/lcip/activate/total_artform_applied.csv index ce564da..0b887b6 100644 --- a/src/_data/viz/lcip/activate/total_artform_applied.csv +++ b/src/_data/viz/lcip/activate/total_artform_applied.csv @@ -1,2 +1,2 @@ -THEME,Total -TOTAL ARTFORM - APPLIED,5 +THEME,Total,total +TOTAL ARTFORM - APPLIED,5,5 diff --git a/src/_data/viz/lcip/activate/total_artform_funded.csv b/src/_data/viz/lcip/activate/total_artform_funded.csv index b8b402a..7a681d2 100644 --- a/src/_data/viz/lcip/activate/total_artform_funded.csv +++ b/src/_data/viz/lcip/activate/total_artform_funded.csv @@ -1,2 +1,2 @@ -THEME,Total -TOTAL ARTFORM - FUNDED,5 +THEME,Total,total +TOTAL ARTFORM - FUNDED,5,5 diff --git a/src/_data/viz/lcip/cultural_anchors/age_applied.csv b/src/_data/viz/lcip/cultural_anchors/age_applied.csv index e6e9a71..5804288 100644 --- a/src/_data/viz/lcip/cultural_anchors/age_applied.csv +++ b/src/_data/viz/lcip/cultural_anchors/age_applied.csv @@ -1,2 +1,2 @@ -THEME,18 - 24,25 - 34,35 - 44,45 - 54,55 - 64,65 - 74,75 - 84,85+,Not known,Prefer not to say -AGE - APPLIED,31,88,71,71,66,11,1,0,47,4 +THEME,18 - 24,25 - 34,35 - 44,45 - 54,55 - 64,65 - 74,75 - 84,85+,Not known,Prefer not to say,total +AGE - APPLIED,31,88,71,71,66,11,1,0,47,4,390 diff --git a/src/_data/viz/lcip/cultural_anchors/age_funded.csv b/src/_data/viz/lcip/cultural_anchors/age_funded.csv index 86edf1d..dc27b61 100644 --- a/src/_data/viz/lcip/cultural_anchors/age_funded.csv +++ b/src/_data/viz/lcip/cultural_anchors/age_funded.csv @@ -1,2 +1,2 @@ -THEME,18 - 24,25 - 34,35 - 44,45 - 54,55 - 64,65 - 74,75 - 84,85+,Not known,Prefer not to say -AGE - FUNDED,31,88,71,71,66,11,1,0,47,4 +THEME,18 - 24,25 - 34,35 - 44,45 - 54,55 - 64,65 - 74,75 - 84,85+,Not known,Prefer not to say,total +AGE - FUNDED,31,88,71,71,66,11,1,0,47,4,390 diff --git a/src/_data/viz/lcip/cultural_anchors/applications_received.csv b/src/_data/viz/lcip/cultural_anchors/applications_received.csv index 5112641..533b844 100644 --- a/src/_data/viz/lcip/cultural_anchors/applications_received.csv +++ b/src/_data/viz/lcip/cultural_anchors/applications_received.csv @@ -1,2 +1,2 @@ -THEME,No. of eligible applications,No. of ineligible,Total amount of funding requested (£),from an organisation -APPLICATIONS RECEIVED,0,0,1065611,3 +THEME,No. of eligible applications,No. of ineligible,Total amount of funding requested (£),from an organisation,total +APPLICATIONS RECEIVED,0,0,1065611,3,1065614 diff --git a/src/_data/viz/lcip/cultural_anchors/artform_applied.csv b/src/_data/viz/lcip/cultural_anchors/artform_applied.csv index ddbc64f..8849c95 100644 --- a/src/_data/viz/lcip/cultural_anchors/artform_applied.csv +++ b/src/_data/viz/lcip/cultural_anchors/artform_applied.csv @@ -1,2 +1,2 @@ -THEME,Circus,Combined Arts,Crafts,Dance,Design,Digital Media,Festival/Carnival,Film,Literature / Poetry / Spoken Word,Live Art,Music,Photography,Theatre,Visual Art -ARTFORM - APPLIED,0,0,0,1,0,0,0,0,0,0,1,0,1,0 +THEME,Circus,Combined Arts,Crafts,Dance,Design,Digital Media,Festival/Carnival,Film,Literature / Poetry / Spoken Word,Live Art,Music,Photography,Theatre,Visual Art,total +ARTFORM - APPLIED,0,0,0,1,0,0,0,0,0,0,1,0,1,0,3 diff --git a/src/_data/viz/lcip/cultural_anchors/artform_funded.csv b/src/_data/viz/lcip/cultural_anchors/artform_funded.csv index efef285..f1a0154 100644 --- a/src/_data/viz/lcip/cultural_anchors/artform_funded.csv +++ b/src/_data/viz/lcip/cultural_anchors/artform_funded.csv @@ -1,2 +1,2 @@ -THEME,Circus,Combined Arts,Crafts,Dance,Design,Digital Media,Festival/Carnival,Film,Literature / Poetry / Spoken Word,Live Art,Music,Photography,Theatre,Visual Art -ARTFORM - FUNDED,0,0,0,1,0,0,0,0,0,0,1,0,1,0 +THEME,Circus,Combined Arts,Crafts,Dance,Design,Digital Media,Festival/Carnival,Film,Literature / Poetry / Spoken Word,Live Art,Music,Photography,Theatre,Visual Art,total +ARTFORM - FUNDED,0,0,0,1,0,0,0,0,0,0,1,0,1,0,3 diff --git a/src/_data/viz/lcip/cultural_anchors/carer_applied.csv b/src/_data/viz/lcip/cultural_anchors/carer_applied.csv index a809b06..b1e7ba2 100644 --- a/src/_data/viz/lcip/cultural_anchors/carer_applied.csv +++ b/src/_data/viz/lcip/cultural_anchors/carer_applied.csv @@ -1,2 +1,2 @@ -THEME,Do you consider yourself to be a carer?,No,Not known,Prefer not to say,Yes -CARER - APPLIED,0,0,375,0,0 +THEME,Do you consider yourself to be a carer?,No,Not known,Prefer not to say,Yes,total +CARER - APPLIED,0,0,375,0,0,375 diff --git a/src/_data/viz/lcip/cultural_anchors/carer_funded.csv b/src/_data/viz/lcip/cultural_anchors/carer_funded.csv index e8a5a62..d025a16 100644 --- a/src/_data/viz/lcip/cultural_anchors/carer_funded.csv +++ b/src/_data/viz/lcip/cultural_anchors/carer_funded.csv @@ -1,2 +1,2 @@ -THEME,Do you consider yourself to be a carer?,No,Not known,Prefer not to say,Yes -CARER - FUNDED,0,0,375,0,0 +THEME,Do you consider yourself to be a carer?,No,Not known,Prefer not to say,Yes,total +CARER - FUNDED,0,0,375,0,0,375 diff --git a/src/_data/viz/lcip/cultural_anchors/contribution_to_workforce.csv b/src/_data/viz/lcip/cultural_anchors/contribution_to_workforce.csv index 48cd891..7e5ab6c 100644 --- a/src/_data/viz/lcip/cultural_anchors/contribution_to_workforce.csv +++ b/src/_data/viz/lcip/cultural_anchors/contribution_to_workforce.csv @@ -1,2 +1,2 @@ -THEME,Artists/Creatives,Total,Volunteers -CONTRIBUTION TO WORKFORCE,1643,1751,108 +THEME,Artists/Creatives,Total,Volunteers,total +CONTRIBUTION TO WORKFORCE,1643,1751,108,3502 diff --git a/src/_data/viz/lcip/cultural_anchors/disability_applied.csv b/src/_data/viz/lcip/cultural_anchors/disability_applied.csv index 418151a..129030f 100644 --- a/src/_data/viz/lcip/cultural_anchors/disability_applied.csv +++ b/src/_data/viz/lcip/cultural_anchors/disability_applied.csv @@ -1,2 +1,2 @@ -THEME,Hearing impairment,Learning disability,Long-standing illness or health condition,Mental health condition,Neuro Diverse,Not known,Other,Physical impairment,Prefer not to say,Visual impairment -DISABILITY - APPLIED,0,0,0,0,21,58,62,0,21,0 +THEME,Hearing impairment,Learning disability,Long-standing illness or health condition,Mental health condition,Neuro Diverse,Not known,Other,Physical impairment,Prefer not to say,Visual impairment,total +DISABILITY - APPLIED,0,0,0,0,21,58,62,0,21,0,162 diff --git a/src/_data/viz/lcip/cultural_anchors/disability_funded.csv b/src/_data/viz/lcip/cultural_anchors/disability_funded.csv index c628016..d2bce67 100644 --- a/src/_data/viz/lcip/cultural_anchors/disability_funded.csv +++ b/src/_data/viz/lcip/cultural_anchors/disability_funded.csv @@ -1,2 +1,2 @@ -THEME,Hearing impairment,Learning disability,Long-standing illness or health condition,Mental health condition,Neuro Diverse,Not known,Other,Physical impairment,Prefer not to say,Visual impairment -DISABILITY - FUNDED,0,0,0,0,21,58,62,0,21,0 +THEME,Hearing impairment,Learning disability,Long-standing illness or health condition,Mental health condition,Neuro Diverse,Not known,Other,Physical impairment,Prefer not to say,Visual impairment,total +DISABILITY - FUNDED,0,0,0,0,21,58,62,0,21,0,162 diff --git a/src/_data/viz/lcip/cultural_anchors/ethnic_origin_applied.csv b/src/_data/viz/lcip/cultural_anchors/ethnic_origin_applied.csv index f00fe1d..9383688 100644 --- a/src/_data/viz/lcip/cultural_anchors/ethnic_origin_applied.csv +++ b/src/_data/viz/lcip/cultural_anchors/ethnic_origin_applied.csv @@ -1,2 +1,2 @@ -THEME,African,Any other Asian background,Any other Black background,Any other background,Any other mixed/multiple ethnic group,Any other white background,Arab,Asian or Asian British,Bangladeshi,Black or Black British,Caribbean,Chinese,Indian,Kashmiri,Mixed/ multiple ethnic group,Other ethnic groups,Pakistani,Prefer not to say,White,White British,White English,White Gypsy or Traveller,White Irish,White Northern Irish,White Scottish,White Welsh,White and Asian,White and Black African,White and Black Caribbean -ETHNIC ORIGIN - APPLIED,2,3,0,5,1,29,0,1,0,0,4,3,3,0,0,0,2,56,0,276,0,0,3,0,0,0,1,0,2 +THEME,African,Any other Asian background,Any other Black background,Any other background,Any other mixed/multiple ethnic group,Any other white background,Arab,Asian or Asian British,Bangladeshi,Black or Black British,Caribbean,Chinese,Indian,Kashmiri,Mixed/ multiple ethnic group,Other ethnic groups,Pakistani,Prefer not to say,White,White British,White English,White Gypsy or Traveller,White Irish,White Northern Irish,White Scottish,White Welsh,White and Asian,White and Black African,White and Black Caribbean,total +ETHNIC ORIGIN - APPLIED,2,3,0,5,1,29,0,1,0,0,4,3,3,0,0,0,2,56,0,276,0,0,3,0,0,0,1,0,2,391 diff --git a/src/_data/viz/lcip/cultural_anchors/ethnic_origin_funded.csv b/src/_data/viz/lcip/cultural_anchors/ethnic_origin_funded.csv index 7f81068..1fc72c5 100644 --- a/src/_data/viz/lcip/cultural_anchors/ethnic_origin_funded.csv +++ b/src/_data/viz/lcip/cultural_anchors/ethnic_origin_funded.csv @@ -1,2 +1,2 @@ -THEME,African,Any other Asian background,Any other Black background,Any other background,Any other mixed/multiple ethnic group,Any other white background,Arab,Asian or Asian British,Bangladeshi,Black or Black British,Caribbean,Chinese,Indian,Kashmiri,Mixed/ multiple ethnic group,Other ethnic groups,Pakistani,Prefer not to say,White,White British,White English,White Gypsy or Traveller,White Irish,White Northern Irish,White Scottish,White Welsh,White and Asian,White and Black African,White and Black Caribbean -ETHNIC ORIGIN - FUNDED,2,3,0,5,1,29,0,1,0,0,4,3,3,0,0,0,2,56,0,276,0,0,3,0,0,0,1,0,2 +THEME,African,Any other Asian background,Any other Black background,Any other background,Any other mixed/multiple ethnic group,Any other white background,Arab,Asian or Asian British,Bangladeshi,Black or Black British,Caribbean,Chinese,Indian,Kashmiri,Mixed/ multiple ethnic group,Other ethnic groups,Pakistani,Prefer not to say,White,White British,White English,White Gypsy or Traveller,White Irish,White Northern Irish,White Scottish,White Welsh,White and Asian,White and Black African,White and Black Caribbean,total +ETHNIC ORIGIN - FUNDED,2,3,0,5,1,29,0,1,0,0,4,3,3,0,0,0,2,56,0,276,0,0,3,0,0,0,1,0,2,391 diff --git a/src/_data/viz/lcip/cultural_anchors/funding.csv b/src/_data/viz/lcip/cultural_anchors/funding.csv index 6d4f08a..cc5d319 100644 --- a/src/_data/viz/lcip/cultural_anchors/funding.csv +++ b/src/_data/viz/lcip/cultural_anchors/funding.csv @@ -1,2 +1,2 @@ -THEME,Funding invested from Leeds City Council,Funding invested from others -FUNDING,724500,310500 +THEME,Funding invested from Leeds City Council,Funding invested from others,total +FUNDING,724500,310500,1035000 diff --git a/src/_data/viz/lcip/cultural_anchors/funding_advice_sessions.csv b/src/_data/viz/lcip/cultural_anchors/funding_advice_sessions.csv index cb83eff..5d04204 100644 --- a/src/_data/viz/lcip/cultural_anchors/funding_advice_sessions.csv +++ b/src/_data/viz/lcip/cultural_anchors/funding_advice_sessions.csv @@ -1,2 +1,2 @@ -THEME,No. of funding surgeries booked,No. of funding surgeries offered,No. of in person sessions,No. of online/Telephone sessions -FUNDING ADVICE SESSIONS,0,0,0,0 +THEME,No. of funding surgeries booked,No. of funding surgeries offered,No. of in person sessions,No. of online/Telephone sessions,total +FUNDING ADVICE SESSIONS,0,0,0,0,0 diff --git a/src/_data/viz/lcip/cultural_anchors/gender_registered_at_birth_applied.csv b/src/_data/viz/lcip/cultural_anchors/gender_registered_at_birth_applied.csv index 92170a3..f47245d 100644 --- a/src/_data/viz/lcip/cultural_anchors/gender_registered_at_birth_applied.csv +++ b/src/_data/viz/lcip/cultural_anchors/gender_registered_at_birth_applied.csv @@ -1,2 +1,2 @@ -THEME,Not known,Prefer not to say,Total -GENDER REGISTERED AT BIRTH - APPLIED,121,0,0 +THEME,Not known,Prefer not to say,Total,total +GENDER REGISTERED AT BIRTH - APPLIED,121,0,0,121 diff --git a/src/_data/viz/lcip/cultural_anchors/gender_registered_at_birth_funded.csv b/src/_data/viz/lcip/cultural_anchors/gender_registered_at_birth_funded.csv index f197a12..e83748d 100644 --- a/src/_data/viz/lcip/cultural_anchors/gender_registered_at_birth_funded.csv +++ b/src/_data/viz/lcip/cultural_anchors/gender_registered_at_birth_funded.csv @@ -1,2 +1,2 @@ -THEME,Not known,Prefer not to say,Total -GENDER REGISTERED AT BIRTH - FUNDED,121,0,0 +THEME,Not known,Prefer not to say,Total,total +GENDER REGISTERED AT BIRTH - FUNDED,121,0,0,121 diff --git a/src/_data/viz/lcip/cultural_anchors/leeds_culture_programmes_website.csv b/src/_data/viz/lcip/cultural_anchors/leeds_culture_programmes_website.csv index d8b83eb..02fadba 100644 --- a/src/_data/viz/lcip/cultural_anchors/leeds_culture_programmes_website.csv +++ b/src/_data/viz/lcip/cultural_anchors/leeds_culture_programmes_website.csv @@ -1,2 +1,2 @@ -THEME,No. applications started,No. of applications completed -LEEDS CULTURE PROGRAMMES WEBSITE,0,0 +THEME,No. applications started,No. of applications completed,total +LEEDS CULTURE PROGRAMMES WEBSITE,0,0,0 diff --git a/src/_data/viz/lcip/cultural_anchors/project_outputs_applied.csv b/src/_data/viz/lcip/cultural_anchors/project_outputs_applied.csv index e9b2acc..3afb4a9 100644 --- a/src/_data/viz/lcip/cultural_anchors/project_outputs_applied.csv +++ b/src/_data/viz/lcip/cultural_anchors/project_outputs_applied.csv @@ -1,2 +1,2 @@ -THEME,Days employment for freelance artists and creatives,Training opportunities,Volunteer opportunities -PROJECT OUTPUTS - APPLIED,24480,42,4348 +THEME,Days employment for freelance artists and creatives,Training opportunities,Volunteer opportunities,total +PROJECT OUTPUTS - APPLIED,24480,42,4348,28870 diff --git a/src/_data/viz/lcip/cultural_anchors/project_outputs_funded.csv b/src/_data/viz/lcip/cultural_anchors/project_outputs_funded.csv index 4369f76..af44af3 100644 --- a/src/_data/viz/lcip/cultural_anchors/project_outputs_funded.csv +++ b/src/_data/viz/lcip/cultural_anchors/project_outputs_funded.csv @@ -1,2 +1,2 @@ -THEME,Days employment for freelance artists and creatives,Learning or participation sessions,New cultural activities/products,Performances or exhibition days,Training opportunities,Volunteer opportunities -PROJECT OUTPUTS - FUNDED,24480,9492,138,845,42,4348 +THEME,Days employment for freelance artists and creatives,Learning or participation sessions,New cultural activities/products,Performances or exhibition days,Training opportunities,Volunteer opportunities,total +PROJECT OUTPUTS - FUNDED,24480,9492,138,845,42,4348,39345 diff --git a/src/_data/viz/lcip/cultural_anchors/reach.csv b/src/_data/viz/lcip/cultural_anchors/reach.csv index a4de266..0cafe46 100644 --- a/src/_data/viz/lcip/cultural_anchors/reach.csv +++ b/src/_data/viz/lcip/cultural_anchors/reach.csv @@ -1,2 +1,2 @@ -THEME,Audience - in person,Broadcast/online audiences,Participants - in person -REACH,413570,1220700,25955 +THEME,Audience - in person,Broadcast/online audiences,Participants - in person,total +REACH,413570,1220700,25955,1660225 diff --git a/src/_data/viz/lcip/cultural_anchors/religious_belief_applied.csv b/src/_data/viz/lcip/cultural_anchors/religious_belief_applied.csv index 99d5460..a3b8c1d 100644 --- a/src/_data/viz/lcip/cultural_anchors/religious_belief_applied.csv +++ b/src/_data/viz/lcip/cultural_anchors/religious_belief_applied.csv @@ -1,2 +1,2 @@ -THEME,Buddhist,Christian,Hindu,Jewish,Muslim,No religion/belief,Not known,Other,Prefer not to say,Sikh -RELIGIOUS BELIEF - APPLIED,0,0,0,0,0,0,375,0,0,0 +THEME,Buddhist,Christian,Hindu,Jewish,Muslim,No religion/belief,Not known,Other,Prefer not to say,Sikh,total +RELIGIOUS BELIEF - APPLIED,0,0,0,0,0,0,375,0,0,0,375 diff --git a/src/_data/viz/lcip/cultural_anchors/religious_belief_funded.csv b/src/_data/viz/lcip/cultural_anchors/religious_belief_funded.csv index 4e915ea..1519059 100644 --- a/src/_data/viz/lcip/cultural_anchors/religious_belief_funded.csv +++ b/src/_data/viz/lcip/cultural_anchors/religious_belief_funded.csv @@ -1,2 +1,2 @@ -THEME,Buddhist,Christian,Hindu,Jewish,Muslim,No religion/belief,Not known,Other,Prefer not to say,Sikh -RELIGIOUS BELIEF - FUNDED,0,0,0,0,0,0,375,0,0,0 +THEME,Buddhist,Christian,Hindu,Jewish,Muslim,No religion/belief,Not known,Other,Prefer not to say,Sikh,total +RELIGIOUS BELIEF - FUNDED,0,0,0,0,0,0,375,0,0,0,375 diff --git a/src/_data/viz/lcip/cultural_anchors/results.csv b/src/_data/viz/lcip/cultural_anchors/results.csv index 71cccf2..6ae8a44 100644 --- a/src/_data/viz/lcip/cultural_anchors/results.csv +++ b/src/_data/viz/lcip/cultural_anchors/results.csv @@ -1,2 +1,2 @@ -THEME,No. of withdrawn by applicant,No. of withdrawn by organisation,No. of funded individual artists,No. of funded organisations,No. of unsucessful artist applications,No. of unsucessful organisations applications,Total amount awarded to individual artists,Total amount awarded to organisations (£) -RESULTS,0,0,0,3,0,0,0,1035000 +THEME,No. of withdrawn by applicant,No. of withdrawn by organisation,No. of funded individual artists,No. of funded organisations,No. of unsucessful artist applications,No. of unsucessful organisations applications,Total amount awarded to individual artists,Total amount awarded to organisations (£),total +RESULTS,0,0,0,3,0,0,0,1035000,1035003 diff --git a/src/_data/viz/lcip/cultural_anchors/sex_applied.csv b/src/_data/viz/lcip/cultural_anchors/sex_applied.csv index 0b44012..9d8cb12 100644 --- a/src/_data/viz/lcip/cultural_anchors/sex_applied.csv +++ b/src/_data/viz/lcip/cultural_anchors/sex_applied.csv @@ -1,2 +1,2 @@ -THEME,Female,Male,Non Binary,Not known,Other,Prefer not to say -SEX - APPLIED,191,131,3,48,0,8 +THEME,Female,Male,Non Binary,Not known,Other,Prefer not to say,total +SEX - APPLIED,191,131,3,48,0,8,381 diff --git a/src/_data/viz/lcip/cultural_anchors/sex_funded.csv b/src/_data/viz/lcip/cultural_anchors/sex_funded.csv index a10d0cc..2688b31 100644 --- a/src/_data/viz/lcip/cultural_anchors/sex_funded.csv +++ b/src/_data/viz/lcip/cultural_anchors/sex_funded.csv @@ -1,2 +1,2 @@ -THEME,Female,Male,Non Binary,Not known,Other,Prefer not to say -SEX - FUNDED,191,131,3,48,0,8 +THEME,Female,Male,Non Binary,Not known,Other,Prefer not to say,total +SEX - FUNDED,191,131,3,48,0,8,381 diff --git a/src/_data/viz/lcip/cultural_anchors/sexual_orientation_applied.csv b/src/_data/viz/lcip/cultural_anchors/sexual_orientation_applied.csv index 2c14bee..26c7902 100644 --- a/src/_data/viz/lcip/cultural_anchors/sexual_orientation_applied.csv +++ b/src/_data/viz/lcip/cultural_anchors/sexual_orientation_applied.csv @@ -1,2 +1,2 @@ -THEME,Bi-sexual,Gay,Heterosexual or Straight,Lesbian,Not known,Other,Prefer not to say -SEXUAL ORIENTATION - APPLIED,23,23,257,10,48,6,24 +THEME,Bi-sexual,Gay,Heterosexual or Straight,Lesbian,Not known,Other,Prefer not to say,total +SEXUAL ORIENTATION - APPLIED,23,23,257,10,48,6,24,391 diff --git a/src/_data/viz/lcip/cultural_anchors/sexual_orientation_funded.csv b/src/_data/viz/lcip/cultural_anchors/sexual_orientation_funded.csv index e8f9712..59713c8 100644 --- a/src/_data/viz/lcip/cultural_anchors/sexual_orientation_funded.csv +++ b/src/_data/viz/lcip/cultural_anchors/sexual_orientation_funded.csv @@ -1,2 +1,2 @@ -THEME,Bi-sexual,Gay,Heterosexual or Straight,Lesbian,Not known,Other,Prefer not to say -SEXUAL ORIENTATION - FUNDED,23,23,257,10,48,6,24 +THEME,Bi-sexual,Gay,Heterosexual or Straight,Lesbian,Not known,Other,Prefer not to say,total +SEXUAL ORIENTATION - FUNDED,23,23,257,10,48,6,24,391 diff --git a/src/_data/viz/lcip/cultural_anchors/total_artform_applied.csv b/src/_data/viz/lcip/cultural_anchors/total_artform_applied.csv index e6e67b1..79e34d3 100644 --- a/src/_data/viz/lcip/cultural_anchors/total_artform_applied.csv +++ b/src/_data/viz/lcip/cultural_anchors/total_artform_applied.csv @@ -1,2 +1,2 @@ -THEME,Total -TOTAL ARTFORM - APPLIED,3 +THEME,Total,total +TOTAL ARTFORM - APPLIED,3,3 diff --git a/src/_data/viz/lcip/cultural_anchors/total_artform_funded.csv b/src/_data/viz/lcip/cultural_anchors/total_artform_funded.csv index 03f7846..7ef43a7 100644 --- a/src/_data/viz/lcip/cultural_anchors/total_artform_funded.csv +++ b/src/_data/viz/lcip/cultural_anchors/total_artform_funded.csv @@ -1,2 +1,2 @@ -THEME,Total -TOTAL ARTFORM - FUNDED,3 +THEME,Total,total +TOTAL ARTFORM - FUNDED,3,3 diff --git a/src/_data/viz/lcip/grow_project/age_applied.csv b/src/_data/viz/lcip/grow_project/age_applied.csv index 226ca15..8fcaa61 100644 --- a/src/_data/viz/lcip/grow_project/age_applied.csv +++ b/src/_data/viz/lcip/grow_project/age_applied.csv @@ -1,2 +1,2 @@ -THEME,18 - 24,25 - 34,35 - 44,45 - 54,55 - 64,65 - 74,75 - 84,85+,Not known,Prefer not to say -AGE - APPLIED,1,13,4,5,3,1,0,0,2,0 +THEME,18 - 24,25 - 34,35 - 44,45 - 54,55 - 64,65 - 74,75 - 84,85+,Not known,Prefer not to say,total +AGE - APPLIED,1,13,4,5,3,1,0,0,2,0,29 diff --git a/src/_data/viz/lcip/grow_project/age_funded.csv b/src/_data/viz/lcip/grow_project/age_funded.csv index f156e2b..8d4e97b 100644 --- a/src/_data/viz/lcip/grow_project/age_funded.csv +++ b/src/_data/viz/lcip/grow_project/age_funded.csv @@ -1,2 +1,2 @@ -THEME,18 - 24,25 - 34,35 - 44,45 - 54,55 - 64,65 - 74,75 - 84,85+,Not known,Prefer not to say -AGE - FUNDED,0,8,4,2,3,1,0,0,2,0 +THEME,18 - 24,25 - 34,35 - 44,45 - 54,55 - 64,65 - 74,75 - 84,85+,Not known,Prefer not to say,total +AGE - FUNDED,0,8,4,2,3,1,0,0,2,0,20 diff --git a/src/_data/viz/lcip/grow_project/applications_received.csv b/src/_data/viz/lcip/grow_project/applications_received.csv index e6ae43e..a4f1f82 100644 --- a/src/_data/viz/lcip/grow_project/applications_received.csv +++ b/src/_data/viz/lcip/grow_project/applications_received.csv @@ -1,2 +1,2 @@ -THEME,No. of eligible applications,No. of ineligible,Total amount of funding requested (£),from an individual artist,from an organisation -APPLICATIONS RECEIVED,17,2,155033,12,5 +THEME,No. of eligible applications,No. of ineligible,Total amount of funding requested (£),from an individual artist,from an organisation,total +APPLICATIONS RECEIVED,17,2,155033,12,5,155069 diff --git a/src/_data/viz/lcip/grow_project/artform_applied.csv b/src/_data/viz/lcip/grow_project/artform_applied.csv index 9217436..42b7ac5 100644 --- a/src/_data/viz/lcip/grow_project/artform_applied.csv +++ b/src/_data/viz/lcip/grow_project/artform_applied.csv @@ -1,2 +1,2 @@ -THEME,Circus,Combined Arts,Crafts,Dance,Design,Digital Media,Festival/Carnival,Film,Literature / Poetry / Spoken Word,Live Art,Music,Photography,Theatre,Visual Art -ARTFORM - APPLIED,0,8,1,2,0,0,1,0,1,0,1,2,2,2 +THEME,Circus,Combined Arts,Crafts,Dance,Design,Digital Media,Festival/Carnival,Film,Literature / Poetry / Spoken Word,Live Art,Music,Photography,Theatre,Visual Art,total +ARTFORM - APPLIED,0,8,1,2,0,0,1,0,1,0,1,2,2,2,20 diff --git a/src/_data/viz/lcip/grow_project/artform_funded.csv b/src/_data/viz/lcip/grow_project/artform_funded.csv index 3701070..66e3eb1 100644 --- a/src/_data/viz/lcip/grow_project/artform_funded.csv +++ b/src/_data/viz/lcip/grow_project/artform_funded.csv @@ -1,2 +1,2 @@ -THEME,Circus,Combined Arts,Crafts,Dance,Design,Digital Media,Festival/Carnival,Film,Literature / Poetry / Spoken Word,Live Art,Music,Photography,Theatre,Visual Art -ARTFORM - FUNDED,0,4,0,1,0,0,0,0,1,0,1,0,2,1 +THEME,Circus,Combined Arts,Crafts,Dance,Design,Digital Media,Festival/Carnival,Film,Literature / Poetry / Spoken Word,Live Art,Music,Photography,Theatre,Visual Art,total +ARTFORM - FUNDED,0,4,0,1,0,0,0,0,1,0,1,0,2,1,10 diff --git a/src/_data/viz/lcip/grow_project/carer_applied.csv b/src/_data/viz/lcip/grow_project/carer_applied.csv index 0ad214c..60fbb8d 100644 --- a/src/_data/viz/lcip/grow_project/carer_applied.csv +++ b/src/_data/viz/lcip/grow_project/carer_applied.csv @@ -1,2 +1,2 @@ -THEME,Do you consider yourself to be a carer?,No,Not known,Prefer not to say,Yes -CARER - APPLIED,0,15,0,3,3 +THEME,Do you consider yourself to be a carer?,No,Not known,Prefer not to say,Yes,total +CARER - APPLIED,0,15,0,3,3,21 diff --git a/src/_data/viz/lcip/grow_project/carer_funded.csv b/src/_data/viz/lcip/grow_project/carer_funded.csv index d0565db..f5ab104 100644 --- a/src/_data/viz/lcip/grow_project/carer_funded.csv +++ b/src/_data/viz/lcip/grow_project/carer_funded.csv @@ -1,2 +1,2 @@ -THEME,Do you consider yourself to be a carer?,No,Not known,Prefer not to say,Yes -CARER - FUNDED,0,8,0,3,2 +THEME,Do you consider yourself to be a carer?,No,Not known,Prefer not to say,Yes,total +CARER - FUNDED,0,8,0,3,2,13 diff --git a/src/_data/viz/lcip/grow_project/contribution_to_workforce.csv b/src/_data/viz/lcip/grow_project/contribution_to_workforce.csv index 4e96185..19ae5d8 100644 --- a/src/_data/viz/lcip/grow_project/contribution_to_workforce.csv +++ b/src/_data/viz/lcip/grow_project/contribution_to_workforce.csv @@ -1,2 +1,2 @@ -THEME,Artists/Creatives,Total,Volunteers -CONTRIBUTION TO WORKFORCE,117,285,168 +THEME,Artists/Creatives,Total,Volunteers,total +CONTRIBUTION TO WORKFORCE,117,285,168,570 diff --git a/src/_data/viz/lcip/grow_project/disability_applied.csv b/src/_data/viz/lcip/grow_project/disability_applied.csv index d4b7fc7..2b45d50 100644 --- a/src/_data/viz/lcip/grow_project/disability_applied.csv +++ b/src/_data/viz/lcip/grow_project/disability_applied.csv @@ -1,2 +1,2 @@ -THEME,Hearing impairment,Learning disability,Long-standing illness or health condition,Mental health condition,Neuro Diverse,Not known,Other,Physical impairment,Prefer not to say,Visual impairment -DISABILITY - APPLIED,2,0,3,1,4,8,0,0,2,0 +THEME,Hearing impairment,Learning disability,Long-standing illness or health condition,Mental health condition,Neuro Diverse,Not known,Other,Physical impairment,Prefer not to say,Visual impairment,total +DISABILITY - APPLIED,2,0,3,1,4,8,0,0,2,0,20 diff --git a/src/_data/viz/lcip/grow_project/disability_funded.csv b/src/_data/viz/lcip/grow_project/disability_funded.csv index 82370bc..5cd51fe 100644 --- a/src/_data/viz/lcip/grow_project/disability_funded.csv +++ b/src/_data/viz/lcip/grow_project/disability_funded.csv @@ -1,2 +1,2 @@ -THEME,Hearing impairment,Learning disability,Long-standing illness or health condition,Mental health condition,Neuro Diverse,Not known,Other,Physical impairment,Prefer not to say,Visual impairment -DISABILITY - FUNDED,2,0,3,0,2,6,0,0,2,0 +THEME,Hearing impairment,Learning disability,Long-standing illness or health condition,Mental health condition,Neuro Diverse,Not known,Other,Physical impairment,Prefer not to say,Visual impairment,total +DISABILITY - FUNDED,2,0,3,0,2,6,0,0,2,0,15 diff --git a/src/_data/viz/lcip/grow_project/ethnic_origin_applied.csv b/src/_data/viz/lcip/grow_project/ethnic_origin_applied.csv index 597aaab..27aa3f8 100644 --- a/src/_data/viz/lcip/grow_project/ethnic_origin_applied.csv +++ b/src/_data/viz/lcip/grow_project/ethnic_origin_applied.csv @@ -1,2 +1,2 @@ -THEME,African,Any other Asian background,Any other Black background,Any other background,Any other mixed/multiple ethnic group,Any other white background,Arab,Asian or Asian British,Bangladeshi,Black or Black British,Caribbean,Chinese,Indian,Kashmiri,Mixed/ multiple ethnic group,Other ethnic groups,Pakistani,Prefer not to say,White,White British,White English,White Gypsy or Traveller,White Irish,White Northern Irish,White Scottish,White Welsh,White and Asian,White and Black African,White and Black Caribbean -ETHNIC ORIGIN - APPLIED,0,0,0,0,1,2,0,0,0,0,1,2,4,0,0,0,0,0,1,2,15,0,0,0,1,0,0,0,0 +THEME,African,Any other Asian background,Any other Black background,Any other background,Any other mixed/multiple ethnic group,Any other white background,Arab,Asian or Asian British,Bangladeshi,Black or Black British,Caribbean,Chinese,Indian,Kashmiri,Mixed/ multiple ethnic group,Other ethnic groups,Pakistani,Prefer not to say,White,White British,White English,White Gypsy or Traveller,White Irish,White Northern Irish,White Scottish,White Welsh,White and Asian,White and Black African,White and Black Caribbean,total +ETHNIC ORIGIN - APPLIED,0,0,0,0,1,2,0,0,0,0,1,2,4,0,0,0,0,0,1,2,15,0,0,0,1,0,0,0,0,29 diff --git a/src/_data/viz/lcip/grow_project/ethnic_origin_funded.csv b/src/_data/viz/lcip/grow_project/ethnic_origin_funded.csv index 1e0ede6..92ea211 100644 --- a/src/_data/viz/lcip/grow_project/ethnic_origin_funded.csv +++ b/src/_data/viz/lcip/grow_project/ethnic_origin_funded.csv @@ -1,2 +1,2 @@ -THEME,African,Any other Asian background,Any other Black background,Any other background,Any other mixed/multiple ethnic group,Any other white background,Arab,Asian or Asian British,Bangladeshi,Black or Black British,Caribbean,Chinese,Indian,Kashmiri,Mixed/ multiple ethnic group,Other ethnic groups,Pakistani,Prefer not to say,White,White British,White English,White Gypsy or Traveller,White Irish,White Northern Irish,White Scottish,White Welsh,White and Asian,White and Black African,White and Black Caribbean -ETHNIC ORIGIN - FUNDED,0,0,0,0,1,1,0,0,0,0,1,2,4,0,0,0,0,0,0,2,9,0,0,0,0,0,0,0,0 +THEME,African,Any other Asian background,Any other Black background,Any other background,Any other mixed/multiple ethnic group,Any other white background,Arab,Asian or Asian British,Bangladeshi,Black or Black British,Caribbean,Chinese,Indian,Kashmiri,Mixed/ multiple ethnic group,Other ethnic groups,Pakistani,Prefer not to say,White,White British,White English,White Gypsy or Traveller,White Irish,White Northern Irish,White Scottish,White Welsh,White and Asian,White and Black African,White and Black Caribbean,total +ETHNIC ORIGIN - FUNDED,0,0,0,0,1,1,0,0,0,0,1,2,4,0,0,0,0,0,0,2,9,0,0,0,0,0,0,0,0,20 diff --git a/src/_data/viz/lcip/grow_project/funding.csv b/src/_data/viz/lcip/grow_project/funding.csv index 7e48046..8980513 100644 --- a/src/_data/viz/lcip/grow_project/funding.csv +++ b/src/_data/viz/lcip/grow_project/funding.csv @@ -1,2 +1,2 @@ -THEME,Funding invested from Leeds City Council,Funding invested from others -FUNDING,89799,0 +THEME,Funding invested from Leeds City Council,Funding invested from others,total +FUNDING,89799,0,89799 diff --git a/src/_data/viz/lcip/grow_project/funding_advice_sessions.csv b/src/_data/viz/lcip/grow_project/funding_advice_sessions.csv index ce49050..3c75adb 100644 --- a/src/_data/viz/lcip/grow_project/funding_advice_sessions.csv +++ b/src/_data/viz/lcip/grow_project/funding_advice_sessions.csv @@ -1,2 +1,2 @@ -THEME,No. of funding surgeries booked,No. of funding surgeries offered,No. of in person sessions,No. of online/Telephone sessions -FUNDING ADVICE SESSIONS,43,53,9,34 +THEME,No. of funding surgeries booked,No. of funding surgeries offered,No. of in person sessions,No. of online/Telephone sessions,total +FUNDING ADVICE SESSIONS,43,53,9,34,139 diff --git a/src/_data/viz/lcip/grow_project/gender_registered_at_birth_applied.csv b/src/_data/viz/lcip/grow_project/gender_registered_at_birth_applied.csv index d73c77a..717475e 100644 --- a/src/_data/viz/lcip/grow_project/gender_registered_at_birth_applied.csv +++ b/src/_data/viz/lcip/grow_project/gender_registered_at_birth_applied.csv @@ -1,2 +1,2 @@ -THEME,Not known,Prefer not to say,Total -GENDER REGISTERED AT BIRTH - APPLIED,0,1,9 +THEME,Not known,Prefer not to say,Total,total +GENDER REGISTERED AT BIRTH - APPLIED,0,1,9,10 diff --git a/src/_data/viz/lcip/grow_project/gender_registered_at_birth_funded.csv b/src/_data/viz/lcip/grow_project/gender_registered_at_birth_funded.csv index 71b8863..b294790 100644 --- a/src/_data/viz/lcip/grow_project/gender_registered_at_birth_funded.csv +++ b/src/_data/viz/lcip/grow_project/gender_registered_at_birth_funded.csv @@ -1,2 +1,2 @@ -THEME,Not known,Prefer not to say,Total -GENDER REGISTERED AT BIRTH - FUNDED,0,1,5 +THEME,Not known,Prefer not to say,Total,total +GENDER REGISTERED AT BIRTH - FUNDED,0,1,5,6 diff --git a/src/_data/viz/lcip/grow_project/leeds_culture_programmes_website.csv b/src/_data/viz/lcip/grow_project/leeds_culture_programmes_website.csv index d8b83eb..02fadba 100644 --- a/src/_data/viz/lcip/grow_project/leeds_culture_programmes_website.csv +++ b/src/_data/viz/lcip/grow_project/leeds_culture_programmes_website.csv @@ -1,2 +1,2 @@ -THEME,No. applications started,No. of applications completed -LEEDS CULTURE PROGRAMMES WEBSITE,0,0 +THEME,No. applications started,No. of applications completed,total +LEEDS CULTURE PROGRAMMES WEBSITE,0,0,0 diff --git a/src/_data/viz/lcip/grow_project/project_outputs_applied.csv b/src/_data/viz/lcip/grow_project/project_outputs_applied.csv index a564eea..2d8a9c9 100644 --- a/src/_data/viz/lcip/grow_project/project_outputs_applied.csv +++ b/src/_data/viz/lcip/grow_project/project_outputs_applied.csv @@ -1,2 +1,2 @@ -THEME,Days employment for freelance artists and creatives,Learning or participation sessions,New cultural activities/products,Performances or exhibition days,Training opportunities,Volunteer opportunities -PROJECT OUTPUTS - APPLIED,663,82,218,431,57,151 +THEME,Days employment for freelance artists and creatives,Learning or participation sessions,New cultural activities/products,Performances or exhibition days,Training opportunities,Volunteer opportunities,total +PROJECT OUTPUTS - APPLIED,663,82,218,431,57,151,1602 diff --git a/src/_data/viz/lcip/grow_project/project_outputs_funded.csv b/src/_data/viz/lcip/grow_project/project_outputs_funded.csv index dbe5937..ff36b07 100644 --- a/src/_data/viz/lcip/grow_project/project_outputs_funded.csv +++ b/src/_data/viz/lcip/grow_project/project_outputs_funded.csv @@ -1,2 +1,2 @@ -THEME,Days employment for freelance artists and creatives,Learning or participation sessions,New cultural activities/products,Performances or exhibition days,Training opportunities,Volunteer opportunities -PROJECT OUTPUTS - FUNDED,172,44,51,350,30,59 +THEME,Days employment for freelance artists and creatives,Learning or participation sessions,New cultural activities/products,Performances or exhibition days,Training opportunities,Volunteer opportunities,total +PROJECT OUTPUTS - FUNDED,172,44,51,350,30,59,706 diff --git a/src/_data/viz/lcip/grow_project/reach.csv b/src/_data/viz/lcip/grow_project/reach.csv index 32ff954..0bedcc4 100644 --- a/src/_data/viz/lcip/grow_project/reach.csv +++ b/src/_data/viz/lcip/grow_project/reach.csv @@ -1,2 +1,2 @@ -THEME,Audience - in person,Broadcast/online audiences,Participants - in person -REACH,116008,118850,21150 +THEME,Audience - in person,Broadcast/online audiences,Participants - in person,total +REACH,116008,118850,21150,256008 diff --git a/src/_data/viz/lcip/grow_project/religious_belief_applied.csv b/src/_data/viz/lcip/grow_project/religious_belief_applied.csv index 0c69714..d9be736 100644 --- a/src/_data/viz/lcip/grow_project/religious_belief_applied.csv +++ b/src/_data/viz/lcip/grow_project/religious_belief_applied.csv @@ -1,2 +1,2 @@ -THEME,Buddhist,Christian,Hindu,Jewish,Muslim,No religion/belief,Not known,Other,Prefer not to say,Sikh -RELIGIOUS BELIEF - APPLIED,1,1,0,0,0,8,7,2,6,0 +THEME,Buddhist,Christian,Hindu,Jewish,Muslim,No religion/belief,Not known,Other,Prefer not to say,Sikh,total +RELIGIOUS BELIEF - APPLIED,1,1,0,0,0,8,7,2,6,0,25 diff --git a/src/_data/viz/lcip/grow_project/religious_belief_funded.csv b/src/_data/viz/lcip/grow_project/religious_belief_funded.csv index f85a459..99d4514 100644 --- a/src/_data/viz/lcip/grow_project/religious_belief_funded.csv +++ b/src/_data/viz/lcip/grow_project/religious_belief_funded.csv @@ -1,2 +1,2 @@ -THEME,Buddhist,Christian,Hindu,Jewish,Muslim,No religion/belief,Not known,Other,Prefer not to say,Sikh -RELIGIOUS BELIEF - FUNDED,0,0,0,0,0,6,7,1,2,0 +THEME,Buddhist,Christian,Hindu,Jewish,Muslim,No religion/belief,Not known,Other,Prefer not to say,Sikh,total +RELIGIOUS BELIEF - FUNDED,0,0,0,0,0,6,7,1,2,0,16 diff --git a/src/_data/viz/lcip/grow_project/results.csv b/src/_data/viz/lcip/grow_project/results.csv index 7c9e6ac..2a7c245 100644 --- a/src/_data/viz/lcip/grow_project/results.csv +++ b/src/_data/viz/lcip/grow_project/results.csv @@ -1,2 +1,2 @@ -THEME,No. of withdrawn by applicant,No. of withdrawn by organisation,No. of funded individual artists,No. of funded organisations,No. of unsucessful artist applications,No. of unsucessful organisations applications,Total amount awarded to individual artists,Total amount awarded to organisations (£) -RESULTS,1,0,3,7,5,2,24690,68109 +THEME,No. of withdrawn by applicant,No. of withdrawn by organisation,No. of funded individual artists,No. of funded organisations,No. of unsucessful artist applications,No. of unsucessful organisations applications,Total amount awarded to individual artists,Total amount awarded to organisations (£),total +RESULTS,1,0,3,7,5,2,24690,68109,92817 diff --git a/src/_data/viz/lcip/grow_project/sex_applied.csv b/src/_data/viz/lcip/grow_project/sex_applied.csv index 9258359..5ba25fe 100644 --- a/src/_data/viz/lcip/grow_project/sex_applied.csv +++ b/src/_data/viz/lcip/grow_project/sex_applied.csv @@ -1,2 +1,2 @@ -THEME,Female,Male,Non Binary,Not known,Other,Prefer not to say -SEX - APPLIED,18,10,0,0,0,0 +THEME,Female,Male,Non Binary,Not known,Other,Prefer not to say,total +SEX - APPLIED,18,10,0,0,0,0,28 diff --git a/src/_data/viz/lcip/grow_project/sex_funded.csv b/src/_data/viz/lcip/grow_project/sex_funded.csv index 12f403b..04838ea 100644 --- a/src/_data/viz/lcip/grow_project/sex_funded.csv +++ b/src/_data/viz/lcip/grow_project/sex_funded.csv @@ -1,2 +1,2 @@ -THEME,Female,Male,Non Binary,Not known,Other,Prefer not to say -SEX - FUNDED,13,7,0,0,0,0 +THEME,Female,Male,Non Binary,Not known,Other,Prefer not to say,total +SEX - FUNDED,13,7,0,0,0,0,20 diff --git a/src/_data/viz/lcip/grow_project/sexual_orientation_applied.csv b/src/_data/viz/lcip/grow_project/sexual_orientation_applied.csv index c685cb3..7e8abb9 100644 --- a/src/_data/viz/lcip/grow_project/sexual_orientation_applied.csv +++ b/src/_data/viz/lcip/grow_project/sexual_orientation_applied.csv @@ -1,2 +1,2 @@ -THEME,Bi-sexual,Gay,Heterosexual or Straight,Lesbian,Not known,Other,Prefer not to say -SEXUAL ORIENTATION - APPLIED,4,3,15,0,1,0,6 +THEME,Bi-sexual,Gay,Heterosexual or Straight,Lesbian,Not known,Other,Prefer not to say,total +SEXUAL ORIENTATION - APPLIED,4,3,15,0,1,0,6,29 diff --git a/src/_data/viz/lcip/grow_project/sexual_orientation_funded.csv b/src/_data/viz/lcip/grow_project/sexual_orientation_funded.csv index 0396842..31cf555 100644 --- a/src/_data/viz/lcip/grow_project/sexual_orientation_funded.csv +++ b/src/_data/viz/lcip/grow_project/sexual_orientation_funded.csv @@ -1,2 +1,2 @@ -THEME,Bi-sexual,Gay,Heterosexual or Straight,Lesbian,Not known,Other,Prefer not to say -SEXUAL ORIENTATION - FUNDED,3,3,12,0,1,0,1 +THEME,Bi-sexual,Gay,Heterosexual or Straight,Lesbian,Not known,Other,Prefer not to say,total +SEXUAL ORIENTATION - FUNDED,3,3,12,0,1,0,1,20 diff --git a/src/_data/viz/lcip/grow_project/target_groups_applied.csv b/src/_data/viz/lcip/grow_project/target_groups_applied.csv index 60df008..f6ff2e5 100644 --- a/src/_data/viz/lcip/grow_project/target_groups_applied.csv +++ b/src/_data/viz/lcip/grow_project/target_groups_applied.csv @@ -1,2 +1,2 @@ -THEME,Carers,Disabled people,Ethnically diverse people,LGBT+,Men,Mental health,Non-binary people,Not targeted at a specific group,Older people (over 55),People in school (teachers governors support staff etc),People with challenging lives (e.g. those who are socially excluded those from a low-income household young people at risk in care or NEET carers),Pupils in schools,Religious or Belief Communities,Women,Younger people (under 25) -TARGET GROUPS - APPLIED,0,2,5,0,0,3,0,9,2,0,5,0,1,2,7 +THEME,Carers,Disabled people,Ethnically diverse people,LGBT+,Men,Mental health,Non-binary people,Not targeted at a specific group,Older people (over 55),People in school (teachers governors support staff etc),People with challenging lives (e.g. those who are socially excluded those from a low-income household young people at risk in care or NEET carers),Pupils in schools,Religious or Belief Communities,Women,Younger people (under 25),total +TARGET GROUPS - APPLIED,0,2,5,0,0,3,0,9,2,0,5,0,1,2,7,36 diff --git a/src/_data/viz/lcip/grow_project/target_groups_funded.csv b/src/_data/viz/lcip/grow_project/target_groups_funded.csv index 6f701f0..495ef7c 100644 --- a/src/_data/viz/lcip/grow_project/target_groups_funded.csv +++ b/src/_data/viz/lcip/grow_project/target_groups_funded.csv @@ -1,2 +1,2 @@ -THEME,Carers,Disabled people,Ethnically diverse people,LGBT+,Men,Mental health,Non-binary people,Not targeted at a specific group,Older people (over 55),People in school (teachers governors support staff etc),People with challenging lives (e.g. those who are socially excluded those from a low-income household young people at risk in care or NEET carers),Pupils in schools,Religious or Belief Communities,Women,Younger people (under 25) -TARGET GROUPS - FUNDED,0,1,4,0,0,1,0,2,0,0,5,0,0,2,5 +THEME,Carers,Disabled people,Ethnically diverse people,LGBT+,Men,Mental health,Non-binary people,Not targeted at a specific group,Older people (over 55),People in school (teachers governors support staff etc),People with challenging lives (e.g. those who are socially excluded those from a low-income household young people at risk in care or NEET carers),Pupils in schools,Religious or Belief Communities,Women,Younger people (under 25),total +TARGET GROUPS - FUNDED,0,1,4,0,0,1,0,2,0,0,5,0,0,2,5,20 diff --git a/src/_data/viz/lcip/grow_project/total_artform_applied.csv b/src/_data/viz/lcip/grow_project/total_artform_applied.csv index d4d782f..b45fe3f 100644 --- a/src/_data/viz/lcip/grow_project/total_artform_applied.csv +++ b/src/_data/viz/lcip/grow_project/total_artform_applied.csv @@ -1,2 +1,2 @@ -THEME,Total (should equal same as row 8) -TOTAL ARTFORM - APPLIED,20 +THEME,Total (should equal same as row 8),total +TOTAL ARTFORM - APPLIED,20,20 diff --git a/src/_data/viz/lcip/grow_project/total_artform_funded.csv b/src/_data/viz/lcip/grow_project/total_artform_funded.csv index 4fcc1a6..e450e1c 100644 --- a/src/_data/viz/lcip/grow_project/total_artform_funded.csv +++ b/src/_data/viz/lcip/grow_project/total_artform_funded.csv @@ -1,2 +1,2 @@ -THEME,Total (should equal same as row 13) -TOTAL ARTFORM - FUNDED,10 +THEME,Total (should equal same as row 13),total +TOTAL ARTFORM - FUNDED,10,10 diff --git a/src/_data/viz/lcip/grow_revenue/age_applied.csv b/src/_data/viz/lcip/grow_revenue/age_applied.csv index d07609a..ca60f8c 100644 --- a/src/_data/viz/lcip/grow_revenue/age_applied.csv +++ b/src/_data/viz/lcip/grow_revenue/age_applied.csv @@ -1,2 +1,2 @@ -THEME,18 - 24,25 - 34,35 - 44,45 - 54,55 - 64,65 - 74,75 - 84,85+,Not known,Prefer not to say -AGE - APPLIED,56,153,166,101,107,39,10,1,11,0 +THEME,18 - 24,25 - 34,35 - 44,45 - 54,55 - 64,65 - 74,75 - 84,85+,Not known,Prefer not to say,total +AGE - APPLIED,56,153,166,101,107,39,10,1,11,0,644 diff --git a/src/_data/viz/lcip/grow_revenue/age_funded.csv b/src/_data/viz/lcip/grow_revenue/age_funded.csv index b4ffd8a..c9b9236 100644 --- a/src/_data/viz/lcip/grow_revenue/age_funded.csv +++ b/src/_data/viz/lcip/grow_revenue/age_funded.csv @@ -1,2 +1,2 @@ -THEME,18 - 24,25 - 34,35 - 44,45 - 54,55 - 64,65 - 74,75 - 84,85+,Not known,Prefer not to say -AGE - FUNDED,55,144,146,91,95,38,9,1,2,0 +THEME,18 - 24,25 - 34,35 - 44,45 - 54,55 - 64,65 - 74,75 - 84,85+,Not known,Prefer not to say,total +AGE - FUNDED,55,144,146,91,95,38,9,1,2,0,581 diff --git a/src/_data/viz/lcip/grow_revenue/applications_received.csv b/src/_data/viz/lcip/grow_revenue/applications_received.csv index 2437311..c805aad 100644 --- a/src/_data/viz/lcip/grow_revenue/applications_received.csv +++ b/src/_data/viz/lcip/grow_revenue/applications_received.csv @@ -1,2 +1,2 @@ -THEME,No. of eligible applications,No. of ineligible,Total amount of funding requested (£),from an organisation -APPLICATIONS RECEIVED,29,1,461070,29 +THEME,No. of eligible applications,No. of ineligible,Total amount of funding requested (£),from an organisation,total +APPLICATIONS RECEIVED,29,1,461070,29,461129 diff --git a/src/_data/viz/lcip/grow_revenue/artform_applied.csv b/src/_data/viz/lcip/grow_revenue/artform_applied.csv index 5085b2e..0f7ab70 100644 --- a/src/_data/viz/lcip/grow_revenue/artform_applied.csv +++ b/src/_data/viz/lcip/grow_revenue/artform_applied.csv @@ -1,2 +1,2 @@ -THEME,Circus,Combined Arts,Crafts,Dance,Design,Digital Media,Festival/Carnival,Film,Literature / Poetry / Spoken Word,Live Art,Music,Photography,Theatre,Visual Art -ARTFORM - APPLIED,0,8,0,4,0,0,1,2,1,2,5,0,8,3 +THEME,Circus,Combined Arts,Crafts,Dance,Design,Digital Media,Festival/Carnival,Film,Literature / Poetry / Spoken Word,Live Art,Music,Photography,Theatre,Visual Art,total +ARTFORM - APPLIED,0,8,0,4,0,0,1,2,1,2,5,0,8,3,34 diff --git a/src/_data/viz/lcip/grow_revenue/artform_funded.csv b/src/_data/viz/lcip/grow_revenue/artform_funded.csv index f8a2c0f..39239bf 100644 --- a/src/_data/viz/lcip/grow_revenue/artform_funded.csv +++ b/src/_data/viz/lcip/grow_revenue/artform_funded.csv @@ -1,2 +1,2 @@ -THEME,Circus,Combined Arts,Crafts,Dance,Design,Digital Media,Festival/Carnival,Film,Literature / Poetry / Spoken Word,Live Art,Music,Photography,Theatre,Visual Art -ARTFORM - FUNDED,0,8,0,4,0,0,0,0,1,2,5,0,7,3 +THEME,Circus,Combined Arts,Crafts,Dance,Design,Digital Media,Festival/Carnival,Film,Literature / Poetry / Spoken Word,Live Art,Music,Photography,Theatre,Visual Art,total +ARTFORM - FUNDED,0,8,0,4,0,0,0,0,1,2,5,0,7,3,30 diff --git a/src/_data/viz/lcip/grow_revenue/carer_applied.csv b/src/_data/viz/lcip/grow_revenue/carer_applied.csv index cdd96fe..cc6d8f1 100644 --- a/src/_data/viz/lcip/grow_revenue/carer_applied.csv +++ b/src/_data/viz/lcip/grow_revenue/carer_applied.csv @@ -1,2 +1,2 @@ -THEME,Do you consider yourself to be a carer?,No,Not known,Prefer not to say,Yes -CARER - APPLIED,0,0,462,0,60 +THEME,Do you consider yourself to be a carer?,No,Not known,Prefer not to say,Yes,total +CARER - APPLIED,0,0,462,0,60,522 diff --git a/src/_data/viz/lcip/grow_revenue/carer_funded.csv b/src/_data/viz/lcip/grow_revenue/carer_funded.csv index 33a83fb..528e2f2 100644 --- a/src/_data/viz/lcip/grow_revenue/carer_funded.csv +++ b/src/_data/viz/lcip/grow_revenue/carer_funded.csv @@ -1,2 +1,2 @@ -THEME,Do you consider yourself to be a carer?,No,Not known,Prefer not to say,Yes -CARER - FUNDED,0,0,416,0,57 +THEME,Do you consider yourself to be a carer?,No,Not known,Prefer not to say,Yes,total +CARER - FUNDED,0,0,416,0,57,473 diff --git a/src/_data/viz/lcip/grow_revenue/contribution_to_workforce.csv b/src/_data/viz/lcip/grow_revenue/contribution_to_workforce.csv index 8c9eca4..7d24cde 100644 --- a/src/_data/viz/lcip/grow_revenue/contribution_to_workforce.csv +++ b/src/_data/viz/lcip/grow_revenue/contribution_to_workforce.csv @@ -1,2 +1,2 @@ -THEME,Artists/Creatives,Total,Volunteers -CONTRIBUTION TO WORKFORCE,8622,9808,1186 +THEME,Artists/Creatives,Total,Volunteers,total +CONTRIBUTION TO WORKFORCE,8622,9808,1186,19616 diff --git a/src/_data/viz/lcip/grow_revenue/disability_applied.csv b/src/_data/viz/lcip/grow_revenue/disability_applied.csv index 9defeec..ba141de 100644 --- a/src/_data/viz/lcip/grow_revenue/disability_applied.csv +++ b/src/_data/viz/lcip/grow_revenue/disability_applied.csv @@ -1,2 +1,2 @@ -THEME,Hearing impairment,Learning disability,Long-standing illness or health condition,Mental health condition,Neuro Diverse,Not known,Other,Physical impairment,Prefer not to say,Visual impairment -DISABILITY - APPLIED,3,7,41,26,37,73,0,8,244,2 +THEME,Hearing impairment,Learning disability,Long-standing illness or health condition,Mental health condition,Neuro Diverse,Not known,Other,Physical impairment,Prefer not to say,Visual impairment,total +DISABILITY - APPLIED,3,7,41,26,37,73,0,8,244,2,441 diff --git a/src/_data/viz/lcip/grow_revenue/disability_funded.csv b/src/_data/viz/lcip/grow_revenue/disability_funded.csv index 246bd22..8621bae 100644 --- a/src/_data/viz/lcip/grow_revenue/disability_funded.csv +++ b/src/_data/viz/lcip/grow_revenue/disability_funded.csv @@ -1,2 +1,2 @@ -THEME,Hearing impairment,Learning disability,Long-standing illness or health condition,Mental health condition,Neuro Diverse,Not known,Other,Physical impairment,Prefer not to say,Visual impairment -DISABILITY - FUNDED,3,7,38,25,35,64,0,8,243,2 +THEME,Hearing impairment,Learning disability,Long-standing illness or health condition,Mental health condition,Neuro Diverse,Not known,Other,Physical impairment,Prefer not to say,Visual impairment,total +DISABILITY - FUNDED,3,7,38,25,35,64,0,8,243,2,425 diff --git a/src/_data/viz/lcip/grow_revenue/ethnic_origin_applied.csv b/src/_data/viz/lcip/grow_revenue/ethnic_origin_applied.csv index 00a408b..e14d43c 100644 --- a/src/_data/viz/lcip/grow_revenue/ethnic_origin_applied.csv +++ b/src/_data/viz/lcip/grow_revenue/ethnic_origin_applied.csv @@ -1,2 +1,2 @@ -THEME,African,Any other Asian background,Any other Black background,Any other background,Any other mixed/multiple ethnic group,Any other white background,Arab,Asian or Asian British,Bangladeshi,Black or Black British,Caribbean,Chinese,Indian,Kashmiri,Mixed/ multiple ethnic group,Other ethnic groups,Pakistani,Prefer not to say,White,White British,White English,White Gypsy or Traveller,White Irish,White Northern Irish,White Scottish,White Welsh,White and Asian,White and Black African,White and Black Caribbean -ETHNIC ORIGIN - APPLIED,11,9,2,8,0,16,3,3,6,0,14,3,12,0,0,0,3,18,16,138,327,0,4,0,2,0,6,4,11 +THEME,African,Any other Asian background,Any other Black background,Any other background,Any other mixed/multiple ethnic group,Any other white background,Arab,Asian or Asian British,Bangladeshi,Black or Black British,Caribbean,Chinese,Indian,Kashmiri,Mixed/ multiple ethnic group,Other ethnic groups,Pakistani,Prefer not to say,White,White British,White English,White Gypsy or Traveller,White Irish,White Northern Irish,White Scottish,White Welsh,White and Asian,White and Black African,White and Black Caribbean,total +ETHNIC ORIGIN - APPLIED,11,9,2,8,0,16,3,3,6,0,14,3,12,0,0,0,3,18,16,138,327,0,4,0,2,0,6,4,11,616 diff --git a/src/_data/viz/lcip/grow_revenue/ethnic_origin_funded.csv b/src/_data/viz/lcip/grow_revenue/ethnic_origin_funded.csv index 1bda187..06c2244 100644 --- a/src/_data/viz/lcip/grow_revenue/ethnic_origin_funded.csv +++ b/src/_data/viz/lcip/grow_revenue/ethnic_origin_funded.csv @@ -1,2 +1,2 @@ -THEME,African,Any other Asian background,Any other Black background,Any other background,Any other mixed/multiple ethnic group,Any other white background,Arab,Asian or Asian British,Bangladeshi,Black or Black British,Caribbean,Chinese,Indian,Kashmiri,Mixed/ multiple ethnic group,Other ethnic groups,Pakistani,Prefer not to say,White,White British,White English,White Gypsy or Traveller,White Irish,White Northern Irish,White Scottish,White Welsh,White and Asian,White and Black African,White and Black Caribbean -ETHNIC ORIGIN - FUNDED,11,8,2,7,0,16,1,3,2,0,13,3,12,0,0,0,1,18,16,96,318,0,4,0,2,0,5,4,11 +THEME,African,Any other Asian background,Any other Black background,Any other background,Any other mixed/multiple ethnic group,Any other white background,Arab,Asian or Asian British,Bangladeshi,Black or Black British,Caribbean,Chinese,Indian,Kashmiri,Mixed/ multiple ethnic group,Other ethnic groups,Pakistani,Prefer not to say,White,White British,White English,White Gypsy or Traveller,White Irish,White Northern Irish,White Scottish,White Welsh,White and Asian,White and Black African,White and Black Caribbean,total +ETHNIC ORIGIN - FUNDED,11,8,2,7,0,16,1,3,2,0,13,3,12,0,0,0,1,18,16,96,318,0,4,0,2,0,5,4,11,553 diff --git a/src/_data/viz/lcip/grow_revenue/funding.csv b/src/_data/viz/lcip/grow_revenue/funding.csv index 7a86d11..7be7465 100644 --- a/src/_data/viz/lcip/grow_revenue/funding.csv +++ b/src/_data/viz/lcip/grow_revenue/funding.csv @@ -1,2 +1,2 @@ -THEME,Funding invested from Leeds City Council,Funding invested from others -FUNDING,329170,0 +THEME,Funding invested from Leeds City Council,Funding invested from others,total +FUNDING,329170,0,329170 diff --git a/src/_data/viz/lcip/grow_revenue/funding_advice_sessions.csv b/src/_data/viz/lcip/grow_revenue/funding_advice_sessions.csv index ca9f3c2..e46e6e4 100644 --- a/src/_data/viz/lcip/grow_revenue/funding_advice_sessions.csv +++ b/src/_data/viz/lcip/grow_revenue/funding_advice_sessions.csv @@ -1,2 +1,2 @@ -THEME,No. of funding surgeries booked,No. of funding surgeries offered,No. of in person sessions,No. of online/Telephone sessions -FUNDING ADVICE SESSIONS,56,80,29,27 +THEME,No. of funding surgeries booked,No. of funding surgeries offered,No. of in person sessions,No. of online/Telephone sessions,total +FUNDING ADVICE SESSIONS,56,80,29,27,192 diff --git a/src/_data/viz/lcip/grow_revenue/gender_registered_at_birth_applied.csv b/src/_data/viz/lcip/grow_revenue/gender_registered_at_birth_applied.csv index 8af7173..1d671a9 100644 --- a/src/_data/viz/lcip/grow_revenue/gender_registered_at_birth_applied.csv +++ b/src/_data/viz/lcip/grow_revenue/gender_registered_at_birth_applied.csv @@ -1,2 +1,2 @@ -THEME,Not known,Prefer not to say,Total -GENDER REGISTERED AT BIRTH - APPLIED,7,1,139 +THEME,Not known,Prefer not to say,Total,total +GENDER REGISTERED AT BIRTH - APPLIED,7,1,139,147 diff --git a/src/_data/viz/lcip/grow_revenue/gender_registered_at_birth_funded.csv b/src/_data/viz/lcip/grow_revenue/gender_registered_at_birth_funded.csv index e314799..c845003 100644 --- a/src/_data/viz/lcip/grow_revenue/gender_registered_at_birth_funded.csv +++ b/src/_data/viz/lcip/grow_revenue/gender_registered_at_birth_funded.csv @@ -1,2 +1,2 @@ -THEME,Not known,Prefer not to say,Total -GENDER REGISTERED AT BIRTH - FUNDED,7,0,131 +THEME,Not known,Prefer not to say,Total,total +GENDER REGISTERED AT BIRTH - FUNDED,7,0,131,138 diff --git a/src/_data/viz/lcip/grow_revenue/leeds_culture_programmes_website.csv b/src/_data/viz/lcip/grow_revenue/leeds_culture_programmes_website.csv index d8b83eb..02fadba 100644 --- a/src/_data/viz/lcip/grow_revenue/leeds_culture_programmes_website.csv +++ b/src/_data/viz/lcip/grow_revenue/leeds_culture_programmes_website.csv @@ -1,2 +1,2 @@ -THEME,No. applications started,No. of applications completed -LEEDS CULTURE PROGRAMMES WEBSITE,0,0 +THEME,No. applications started,No. of applications completed,total +LEEDS CULTURE PROGRAMMES WEBSITE,0,0,0 diff --git a/src/_data/viz/lcip/grow_revenue/project_outputs_applied.csv b/src/_data/viz/lcip/grow_revenue/project_outputs_applied.csv index 314756d..5636b81 100644 --- a/src/_data/viz/lcip/grow_revenue/project_outputs_applied.csv +++ b/src/_data/viz/lcip/grow_revenue/project_outputs_applied.csv @@ -1,2 +1,2 @@ -THEME,Days employment for freelance artists and creatives,Learning or participation sessions,New cultural activities/products,Performances or exhibition days,Training opportunities,Volunteer opportunities -PROJECT OUTPUTS - APPLIED,2323,91,79,7431,174,244 +THEME,Days employment for freelance artists and creatives,Learning or participation sessions,New cultural activities/products,Performances or exhibition days,Training opportunities,Volunteer opportunities,total +PROJECT OUTPUTS - APPLIED,2323,91,79,7431,174,244,10342 diff --git a/src/_data/viz/lcip/grow_revenue/project_outputs_funded.csv b/src/_data/viz/lcip/grow_revenue/project_outputs_funded.csv index dbe5937..ff36b07 100644 --- a/src/_data/viz/lcip/grow_revenue/project_outputs_funded.csv +++ b/src/_data/viz/lcip/grow_revenue/project_outputs_funded.csv @@ -1,2 +1,2 @@ -THEME,Days employment for freelance artists and creatives,Learning or participation sessions,New cultural activities/products,Performances or exhibition days,Training opportunities,Volunteer opportunities -PROJECT OUTPUTS - FUNDED,172,44,51,350,30,59 +THEME,Days employment for freelance artists and creatives,Learning or participation sessions,New cultural activities/products,Performances or exhibition days,Training opportunities,Volunteer opportunities,total +PROJECT OUTPUTS - FUNDED,172,44,51,350,30,59,706 diff --git a/src/_data/viz/lcip/grow_revenue/reach.csv b/src/_data/viz/lcip/grow_revenue/reach.csv index d454f75..d650da9 100644 --- a/src/_data/viz/lcip/grow_revenue/reach.csv +++ b/src/_data/viz/lcip/grow_revenue/reach.csv @@ -1,2 +1,2 @@ -THEME,Audience - in person,Broadcast/online audiences,Participants - in person -REACH,707735,440072023,236876 +THEME,Audience - in person,Broadcast/online audiences,Participants - in person,total +REACH,707735,440072023,236876,441016634 diff --git a/src/_data/viz/lcip/grow_revenue/religious_belief_applied.csv b/src/_data/viz/lcip/grow_revenue/religious_belief_applied.csv index 1ee3d22..9fbf2e6 100644 --- a/src/_data/viz/lcip/grow_revenue/religious_belief_applied.csv +++ b/src/_data/viz/lcip/grow_revenue/religious_belief_applied.csv @@ -1,2 +1,2 @@ -THEME,Buddhist,Christian,Hindu,Jewish,Muslim,No religion/belief,Not known,Other,Prefer not to say,Sikh -RELIGIOUS BELIEF - APPLIED,3,15,0,10,9,61,527,2,37,0 +THEME,Buddhist,Christian,Hindu,Jewish,Muslim,No religion/belief,Not known,Other,Prefer not to say,Sikh,total +RELIGIOUS BELIEF - APPLIED,3,15,0,10,9,61,527,2,37,0,664 diff --git a/src/_data/viz/lcip/grow_revenue/religious_belief_funded.csv b/src/_data/viz/lcip/grow_revenue/religious_belief_funded.csv index 918eb05..d437054 100644 --- a/src/_data/viz/lcip/grow_revenue/religious_belief_funded.csv +++ b/src/_data/viz/lcip/grow_revenue/religious_belief_funded.csv @@ -1,2 +1,2 @@ -THEME,Buddhist,Christian,Hindu,Jewish,Muslim,No religion/belief,Not known,Other,Prefer not to say,Sikh -RELIGIOUS BELIEF - FUNDED,3,15,0,10,4,61,469,2,37,0 +THEME,Buddhist,Christian,Hindu,Jewish,Muslim,No religion/belief,Not known,Other,Prefer not to say,Sikh,total +RELIGIOUS BELIEF - FUNDED,3,15,0,10,4,61,469,2,37,0,601 diff --git a/src/_data/viz/lcip/grow_revenue/results.csv b/src/_data/viz/lcip/grow_revenue/results.csv index fc02a72..3a3ea5c 100644 --- a/src/_data/viz/lcip/grow_revenue/results.csv +++ b/src/_data/viz/lcip/grow_revenue/results.csv @@ -1,2 +1,2 @@ -THEME,No. of withdrawn by applicant,No. of withdrawn by organisation,No. of funded individual artists,No. of funded organisations,No. of unsucessful artist applications,No. of unsucessful organisations applications,Total amount awarded to individual artists,Total amount awarded to organisations (£) -RESULTS,0,1,0,29,0,2,0,329170 +THEME,No. of withdrawn by applicant,No. of withdrawn by organisation,No. of funded individual artists,No. of funded organisations,No. of unsucessful artist applications,No. of unsucessful organisations applications,Total amount awarded to individual artists,Total amount awarded to organisations (£),total +RESULTS,0,1,0,29,0,2,0,329170,329202 diff --git a/src/_data/viz/lcip/grow_revenue/sex_applied.csv b/src/_data/viz/lcip/grow_revenue/sex_applied.csv index 49e1c99..7fbd613 100644 --- a/src/_data/viz/lcip/grow_revenue/sex_applied.csv +++ b/src/_data/viz/lcip/grow_revenue/sex_applied.csv @@ -1,2 +1,2 @@ -THEME,Female,Male,Non Binary,Not known,Other,Prefer not to say -SEX - APPLIED,370,260,5,70,2,0 +THEME,Female,Male,Non Binary,Not known,Other,Prefer not to say,total +SEX - APPLIED,370,260,5,70,2,0,707 diff --git a/src/_data/viz/lcip/grow_revenue/sex_funded.csv b/src/_data/viz/lcip/grow_revenue/sex_funded.csv index c2231f6..5aef931 100644 --- a/src/_data/viz/lcip/grow_revenue/sex_funded.csv +++ b/src/_data/viz/lcip/grow_revenue/sex_funded.csv @@ -1,2 +1,2 @@ -THEME,Female,Male,Non Binary,Not known,Other,Prefer not to say -SEX - FUNDED,334,234,4,70,2,0 +THEME,Female,Male,Non Binary,Not known,Other,Prefer not to say,total +SEX - FUNDED,334,234,4,70,2,0,644 diff --git a/src/_data/viz/lcip/grow_revenue/sexual_orientation_applied.csv b/src/_data/viz/lcip/grow_revenue/sexual_orientation_applied.csv index b04fadd..940be32 100644 --- a/src/_data/viz/lcip/grow_revenue/sexual_orientation_applied.csv +++ b/src/_data/viz/lcip/grow_revenue/sexual_orientation_applied.csv @@ -1,2 +1,2 @@ -THEME,Bi-sexual,Gay,Heterosexual or Straight,Lesbian,Not known,Other,Prefer not to say -SEXUAL ORIENTATION - APPLIED,15,19,174,6,364,14,24 +THEME,Bi-sexual,Gay,Heterosexual or Straight,Lesbian,Not known,Other,Prefer not to say,total +SEXUAL ORIENTATION - APPLIED,15,19,174,6,364,14,24,616 diff --git a/src/_data/viz/lcip/grow_revenue/sexual_orientation_funded.csv b/src/_data/viz/lcip/grow_revenue/sexual_orientation_funded.csv index 4344006..1df680a 100644 --- a/src/_data/viz/lcip/grow_revenue/sexual_orientation_funded.csv +++ b/src/_data/viz/lcip/grow_revenue/sexual_orientation_funded.csv @@ -1,2 +1,2 @@ -THEME,Bi-sexual,Gay,Heterosexual or Straight,Lesbian,Not known,Other,Prefer not to say -SEXUAL ORIENTATION - FUNDED,14,15,163,6,318,14,23 +THEME,Bi-sexual,Gay,Heterosexual or Straight,Lesbian,Not known,Other,Prefer not to say,total +SEXUAL ORIENTATION - FUNDED,14,15,163,6,318,14,23,553 diff --git a/src/_data/viz/lcip/grow_revenue/target_groups_applied.csv b/src/_data/viz/lcip/grow_revenue/target_groups_applied.csv index f6b8fb9..d6770c0 100644 --- a/src/_data/viz/lcip/grow_revenue/target_groups_applied.csv +++ b/src/_data/viz/lcip/grow_revenue/target_groups_applied.csv @@ -1,2 +1,2 @@ -THEME,Carers,Disabled people,Ethnically diverse people,LGBT+,Men,Mental health,Non-binary people,Not targeted at a specific group,Older people (over 55),People in school (teachers governors support staff etc),People with challenging lives (e.g. those who are socially excluded those from a low-income household young people at risk in care or NEET carers),Pupils in schools,Religious or Belief Communities,Women,Younger people (under 25) -TARGET GROUPS - APPLIED,3,5,8,3,0,7,0,7,4,0,12,3,0,1,7 +THEME,Carers,Disabled people,Ethnically diverse people,LGBT+,Men,Mental health,Non-binary people,Not targeted at a specific group,Older people (over 55),People in school (teachers governors support staff etc),People with challenging lives (e.g. those who are socially excluded those from a low-income household young people at risk in care or NEET carers),Pupils in schools,Religious or Belief Communities,Women,Younger people (under 25),total +TARGET GROUPS - APPLIED,3,5,8,3,0,7,0,7,4,0,12,3,0,1,7,60 diff --git a/src/_data/viz/lcip/grow_revenue/target_groups_funded.csv b/src/_data/viz/lcip/grow_revenue/target_groups_funded.csv index d91b3e6..20a0106 100644 --- a/src/_data/viz/lcip/grow_revenue/target_groups_funded.csv +++ b/src/_data/viz/lcip/grow_revenue/target_groups_funded.csv @@ -1,2 +1,2 @@ -THEME,Carers,Disabled people,Ethnically diverse people,LGBT+,Men,Mental health,Non-binary people,Not targeted at a specific group,Older people (over 55),People in school (teachers governors support staff etc),People with challenging lives (e.g. those who are socially excluded those from a low-income household young people at risk in care or NEET carers),Pupils in schools,Religious or Belief Communities,Women,Younger people (under 25) -TARGET GROUPS - FUNDED,3,5,8,3,0,6,0,6,4,0,10,3,0,1,6 +THEME,Carers,Disabled people,Ethnically diverse people,LGBT+,Men,Mental health,Non-binary people,Not targeted at a specific group,Older people (over 55),People in school (teachers governors support staff etc),People with challenging lives (e.g. those who are socially excluded those from a low-income household young people at risk in care or NEET carers),Pupils in schools,Religious or Belief Communities,Women,Younger people (under 25),total +TARGET GROUPS - FUNDED,3,5,8,3,0,6,0,6,4,0,10,3,0,1,6,55 diff --git a/src/_data/viz/lcip/grow_revenue/total_artform_applied.csv b/src/_data/viz/lcip/grow_revenue/total_artform_applied.csv index 7b31026..0b6106e 100644 --- a/src/_data/viz/lcip/grow_revenue/total_artform_applied.csv +++ b/src/_data/viz/lcip/grow_revenue/total_artform_applied.csv @@ -1,2 +1,2 @@ -THEME,Total (should equal same as row 8) -TOTAL ARTFORM - APPLIED,33 +THEME,Total (should equal same as row 8),total +TOTAL ARTFORM - APPLIED,33,33 diff --git a/src/_data/viz/lcip/grow_revenue/total_artform_funded.csv b/src/_data/viz/lcip/grow_revenue/total_artform_funded.csv index a81ca2e..b2f0bd0 100644 --- a/src/_data/viz/lcip/grow_revenue/total_artform_funded.csv +++ b/src/_data/viz/lcip/grow_revenue/total_artform_funded.csv @@ -1,2 +1,2 @@ -THEME,Total (should equal same as row 13) -TOTAL ARTFORM - FUNDED,29 +THEME,Total (should equal same as row 13),total +TOTAL ARTFORM - FUNDED,29,29 diff --git a/src/_data/viz/lcip/inspire/age_applied.csv b/src/_data/viz/lcip/inspire/age_applied.csv index edc4905..e46ab53 100644 --- a/src/_data/viz/lcip/inspire/age_applied.csv +++ b/src/_data/viz/lcip/inspire/age_applied.csv @@ -1,2 +1,2 @@ -THEME,18 - 24,25 - 34,35 - 44,45 - 54,55 - 64,65 - 74,75 - 84,85+,Not known,Prefer not to say -AGE - APPLIED,13,43,63,22,22,8,13,1,2,1 +THEME,18 - 24,25 - 34,35 - 44,45 - 54,55 - 64,65 - 74,75 - 84,85+,Not known,Prefer not to say,total +AGE - APPLIED,13,43,63,22,22,8,13,1,2,1,188 diff --git a/src/_data/viz/lcip/inspire/age_funded.csv b/src/_data/viz/lcip/inspire/age_funded.csv index c27784e..4d43dc8 100644 --- a/src/_data/viz/lcip/inspire/age_funded.csv +++ b/src/_data/viz/lcip/inspire/age_funded.csv @@ -1,2 +1,2 @@ -THEME,18 - 24,25 - 34,35 - 44,45 - 54,55 - 64,65 - 74,75 - 84,85+,Not known,Prefer not to say -AGE - FUNDED,1,8,19,5,8,4,8,1,0,0 +THEME,18 - 24,25 - 34,35 - 44,45 - 54,55 - 64,65 - 74,75 - 84,85+,Not known,Prefer not to say,total +AGE - FUNDED,1,8,19,5,8,4,8,1,0,0,54 diff --git a/src/_data/viz/lcip/inspire/applications_received.csv b/src/_data/viz/lcip/inspire/applications_received.csv index 7530e06..86652d9 100644 --- a/src/_data/viz/lcip/inspire/applications_received.csv +++ b/src/_data/viz/lcip/inspire/applications_received.csv @@ -1,2 +1,2 @@ -THEME,No. of eligible applications,No. of ineligible,Total amount of funding requested (£),from an individual artist,from an organisation -APPLICATIONS RECEIVED,41,2,54652,26,8 +THEME,No. of eligible applications,No. of ineligible,Total amount of funding requested (£),from an individual artist,from an organisation,total +APPLICATIONS RECEIVED,41,2,54652,26,8,54729 diff --git a/src/_data/viz/lcip/inspire/artform_applied.csv b/src/_data/viz/lcip/inspire/artform_applied.csv index 7178abd..e8c61f8 100644 --- a/src/_data/viz/lcip/inspire/artform_applied.csv +++ b/src/_data/viz/lcip/inspire/artform_applied.csv @@ -1,2 +1,2 @@ -THEME,Circus,Combined Arts,Crafts,Dance,Design,Digital Media,Festival/Carnival,Film,Literature / Poetry / Spoken Word,Live Art,Music,Photography,Theatre,Visual Art -ARTFORM - APPLIED,0,5,1,1,0,2,3,4,2,0,11,2,4,8 +THEME,Circus,Combined Arts,Crafts,Dance,Design,Digital Media,Festival/Carnival,Film,Literature / Poetry / Spoken Word,Live Art,Music,Photography,Theatre,Visual Art,total +ARTFORM - APPLIED,0,5,1,1,0,2,3,4,2,0,11,2,4,8,43 diff --git a/src/_data/viz/lcip/inspire/artform_funded.csv b/src/_data/viz/lcip/inspire/artform_funded.csv index b82cab6..cd24d40 100644 --- a/src/_data/viz/lcip/inspire/artform_funded.csv +++ b/src/_data/viz/lcip/inspire/artform_funded.csv @@ -1,2 +1,2 @@ -THEME,Circus,Combined Arts,Crafts,Dance,Design,Digital Media,Festival/Carnival,Film,Literature / Poetry / Spoken Word,Live Art,Music,Photography,Theatre,Visual Art -ARTFORM - FUNDED,0,0,1,0,0,2,1,1,0,0,3,1,1,6 +THEME,Circus,Combined Arts,Crafts,Dance,Design,Digital Media,Festival/Carnival,Film,Literature / Poetry / Spoken Word,Live Art,Music,Photography,Theatre,Visual Art,total +ARTFORM - FUNDED,0,0,1,0,0,2,1,1,0,0,3,1,1,6,16 diff --git a/src/_data/viz/lcip/inspire/carer_applied.csv b/src/_data/viz/lcip/inspire/carer_applied.csv index 86eee37..664b49c 100644 --- a/src/_data/viz/lcip/inspire/carer_applied.csv +++ b/src/_data/viz/lcip/inspire/carer_applied.csv @@ -1,2 +1,2 @@ -THEME,Do you consider yourself to be a carer?,No,Not known,Prefer not to say,Yes -CARER - APPLIED,0,53,97,11,10 +THEME,Do you consider yourself to be a carer?,No,Not known,Prefer not to say,Yes,total +CARER - APPLIED,0,53,97,11,10,171 diff --git a/src/_data/viz/lcip/inspire/carer_funded.csv b/src/_data/viz/lcip/inspire/carer_funded.csv index ebbaaf0..3b823e5 100644 --- a/src/_data/viz/lcip/inspire/carer_funded.csv +++ b/src/_data/viz/lcip/inspire/carer_funded.csv @@ -1,2 +1,2 @@ -THEME,Do you consider yourself to be a carer?,No,Not known,Prefer not to say,Yes -CARER - FUNDED,0,8,15,11,5 +THEME,Do you consider yourself to be a carer?,No,Not known,Prefer not to say,Yes,total +CARER - FUNDED,0,8,15,11,5,39 diff --git a/src/_data/viz/lcip/inspire/contribution_to_workforce.csv b/src/_data/viz/lcip/inspire/contribution_to_workforce.csv index c32545f..ee7cf2a 100644 --- a/src/_data/viz/lcip/inspire/contribution_to_workforce.csv +++ b/src/_data/viz/lcip/inspire/contribution_to_workforce.csv @@ -1,2 +1,2 @@ -THEME,Artists/Creatives,Total,Volunteers -CONTRIBUTION TO WORKFORCE,483,590,107 +THEME,Artists/Creatives,Total,Volunteers,total +CONTRIBUTION TO WORKFORCE,483,590,107,1180 diff --git a/src/_data/viz/lcip/inspire/disability_applied.csv b/src/_data/viz/lcip/inspire/disability_applied.csv index f44041d..e82fc2f 100644 --- a/src/_data/viz/lcip/inspire/disability_applied.csv +++ b/src/_data/viz/lcip/inspire/disability_applied.csv @@ -1,2 +1,2 @@ -THEME,Hearing impairment,Learning disability,Long-standing illness or health condition,Mental health condition,Neuro Diverse,Not known,Other,Physical impairment,Prefer not to say,Visual impairment -DISABILITY - APPLIED,3,7,7,8,11,89,0,6,13,1 +THEME,Hearing impairment,Learning disability,Long-standing illness or health condition,Mental health condition,Neuro Diverse,Not known,Other,Physical impairment,Prefer not to say,Visual impairment,total +DISABILITY - APPLIED,3,7,7,8,11,89,0,6,13,1,145 diff --git a/src/_data/viz/lcip/inspire/disability_funded.csv b/src/_data/viz/lcip/inspire/disability_funded.csv index aab4b3a..9f12c62 100644 --- a/src/_data/viz/lcip/inspire/disability_funded.csv +++ b/src/_data/viz/lcip/inspire/disability_funded.csv @@ -1,2 +1,2 @@ -THEME,Hearing impairment,Learning disability,Long-standing illness or health condition,Mental health condition,Neuro Diverse,Not known,Other,Physical impairment,Prefer not to say,Visual impairment -DISABILITY - FUNDED,2,2,4,4,5,4,0,6,11,0 +THEME,Hearing impairment,Learning disability,Long-standing illness or health condition,Mental health condition,Neuro Diverse,Not known,Other,Physical impairment,Prefer not to say,Visual impairment,total +DISABILITY - FUNDED,2,2,4,4,5,4,0,6,11,0,38 diff --git a/src/_data/viz/lcip/inspire/ethnic_origin_applied.csv b/src/_data/viz/lcip/inspire/ethnic_origin_applied.csv index 8e38ccd..fc2f084 100644 --- a/src/_data/viz/lcip/inspire/ethnic_origin_applied.csv +++ b/src/_data/viz/lcip/inspire/ethnic_origin_applied.csv @@ -1,2 +1,2 @@ -THEME,African,Any other Asian background,Any other Black background,Any other background,Any other mixed/multiple ethnic group,Any other white background,Arab,Asian or Asian British,Bangladeshi,Black or Black British,Caribbean,Chinese,Indian,Kashmiri,Mixed/ multiple ethnic group,Other ethnic groups,Pakistani,Prefer not to say,White,White British,White English,White Gypsy or Traveller,White Irish,White Northern Irish,White Scottish,White Welsh,White and Asian,White and Black African,White and Black Caribbean -ETHNIC ORIGIN - APPLIED,3,0,0,0,3,15,0,1,0,0,4,1,11,0,0,0,1,41,0,27,68,0,0,0,3,3,2,2,1 +THEME,African,Any other Asian background,Any other Black background,Any other background,Any other mixed/multiple ethnic group,Any other white background,Arab,Asian or Asian British,Bangladeshi,Black or Black British,Caribbean,Chinese,Indian,Kashmiri,Mixed/ multiple ethnic group,Other ethnic groups,Pakistani,Prefer not to say,White,White British,White English,White Gypsy or Traveller,White Irish,White Northern Irish,White Scottish,White Welsh,White and Asian,White and Black African,White and Black Caribbean,total +ETHNIC ORIGIN - APPLIED,3,0,0,0,3,15,0,1,0,0,4,1,11,0,0,0,1,41,0,27,68,0,0,0,3,3,2,2,1,186 diff --git a/src/_data/viz/lcip/inspire/ethnic_origin_funded.csv b/src/_data/viz/lcip/inspire/ethnic_origin_funded.csv index 1300d64..36dc6a5 100644 --- a/src/_data/viz/lcip/inspire/ethnic_origin_funded.csv +++ b/src/_data/viz/lcip/inspire/ethnic_origin_funded.csv @@ -1,2 +1,2 @@ -THEME,African,Any other Asian background,Any other Black background,Any other background,Any other mixed/multiple ethnic group,Any other white background,Arab,Asian or Asian British,Bangladeshi,Black or Black British,Caribbean,Chinese,Indian,Kashmiri,Mixed/ multiple ethnic group,Other ethnic groups,Pakistani,Prefer not to say,White,White British,White English,White Gypsy or Traveller,White Irish,White Northern Irish,White Scottish,White Welsh,White and Asian,White and Black African,White and Black Caribbean -ETHNIC ORIGIN - FUNDED,0,0,0,0,2,4,0,0,0,0,2,0,0,0,0,0,0,0,0,3,33,0,0,0,0,1,2,1,0 +THEME,African,Any other Asian background,Any other Black background,Any other background,Any other mixed/multiple ethnic group,Any other white background,Arab,Asian or Asian British,Bangladeshi,Black or Black British,Caribbean,Chinese,Indian,Kashmiri,Mixed/ multiple ethnic group,Other ethnic groups,Pakistani,Prefer not to say,White,White British,White English,White Gypsy or Traveller,White Irish,White Northern Irish,White Scottish,White Welsh,White and Asian,White and Black African,White and Black Caribbean,total +ETHNIC ORIGIN - FUNDED,0,0,0,0,2,4,0,0,0,0,2,0,0,0,0,0,0,0,0,3,33,0,0,0,0,1,2,1,0,48 diff --git a/src/_data/viz/lcip/inspire/funding.csv b/src/_data/viz/lcip/inspire/funding.csv index 1c1747c..26f2e3c 100644 --- a/src/_data/viz/lcip/inspire/funding.csv +++ b/src/_data/viz/lcip/inspire/funding.csv @@ -1,2 +1,2 @@ -THEME,Funding invested from Leeds City Council,Funding invested from others -FUNDING,21701,0 +THEME,Funding invested from Leeds City Council,Funding invested from others,total +FUNDING,21701,0,21701 diff --git a/src/_data/viz/lcip/inspire/funding_advice_sessions.csv b/src/_data/viz/lcip/inspire/funding_advice_sessions.csv index 4a0939a..5b105c7 100644 --- a/src/_data/viz/lcip/inspire/funding_advice_sessions.csv +++ b/src/_data/viz/lcip/inspire/funding_advice_sessions.csv @@ -1,2 +1,2 @@ -THEME,No. of funding surgeries booked,No. of funding surgeries offered,No. of in person sessions,No. of online/Telephone sessions -FUNDING ADVICE SESSIONS,37,43,6,31 +THEME,No. of funding surgeries booked,No. of funding surgeries offered,No. of in person sessions,No. of online/Telephone sessions,total +FUNDING ADVICE SESSIONS,37,43,6,31,117 diff --git a/src/_data/viz/lcip/inspire/gender_registered_at_birth_applied.csv b/src/_data/viz/lcip/inspire/gender_registered_at_birth_applied.csv index 631398a..60a1418 100644 --- a/src/_data/viz/lcip/inspire/gender_registered_at_birth_applied.csv +++ b/src/_data/viz/lcip/inspire/gender_registered_at_birth_applied.csv @@ -1,2 +1,2 @@ -THEME,Not known,Prefer not to say,Total -GENDER REGISTERED AT BIRTH - APPLIED,40,1,0 +THEME,Not known,Prefer not to say,Total,total +GENDER REGISTERED AT BIRTH - APPLIED,40,1,0,41 diff --git a/src/_data/viz/lcip/inspire/gender_registered_at_birth_funded.csv b/src/_data/viz/lcip/inspire/gender_registered_at_birth_funded.csv index c2fdc89..9f48c20 100644 --- a/src/_data/viz/lcip/inspire/gender_registered_at_birth_funded.csv +++ b/src/_data/viz/lcip/inspire/gender_registered_at_birth_funded.csv @@ -1,2 +1,2 @@ -THEME,Not known,Prefer not to say,Total -GENDER REGISTERED AT BIRTH - FUNDED,6,1,0 +THEME,Not known,Prefer not to say,Total,total +GENDER REGISTERED AT BIRTH - FUNDED,6,1,0,7 diff --git a/src/_data/viz/lcip/inspire/leeds_culture_programmes_website.csv b/src/_data/viz/lcip/inspire/leeds_culture_programmes_website.csv index 3c3efc8..e467581 100644 --- a/src/_data/viz/lcip/inspire/leeds_culture_programmes_website.csv +++ b/src/_data/viz/lcip/inspire/leeds_culture_programmes_website.csv @@ -1,2 +1,2 @@ -THEME,No. applications started,No. of applications completed -LEEDS CULTURE PROGRAMMES WEBSITE,35,26 +THEME,No. applications started,No. of applications completed,total +LEEDS CULTURE PROGRAMMES WEBSITE,35,26,61 diff --git a/src/_data/viz/lcip/inspire/project_outputs_applied.csv b/src/_data/viz/lcip/inspire/project_outputs_applied.csv index fdc9a1c..3a93ca7 100644 --- a/src/_data/viz/lcip/inspire/project_outputs_applied.csv +++ b/src/_data/viz/lcip/inspire/project_outputs_applied.csv @@ -1,2 +1,2 @@ -THEME,Days employment for freelance artists and creatives,Learning or participation sessions,New cultural activities/products,Performances or exhibition days,Training opportunities,Volunteer opportunities -PROJECT OUTPUTS - APPLIED,757,234,365,942,233,241 +THEME,Days employment for freelance artists and creatives,Learning or participation sessions,New cultural activities/products,Performances or exhibition days,Training opportunities,Volunteer opportunities,total +PROJECT OUTPUTS - APPLIED,757,234,365,942,233,241,2772 diff --git a/src/_data/viz/lcip/inspire/project_outputs_funded.csv b/src/_data/viz/lcip/inspire/project_outputs_funded.csv index 8f52116..9173f3d 100644 --- a/src/_data/viz/lcip/inspire/project_outputs_funded.csv +++ b/src/_data/viz/lcip/inspire/project_outputs_funded.csv @@ -1,2 +1,2 @@ -THEME,Days employment for freelance artists and creatives,Learning or participation sessions,New cultural activities/products,Performances or exhibition days,Training opportunities,Volunteer opportunities -PROJECT OUTPUTS - FUNDED,222,83,252,490,53,105 +THEME,Days employment for freelance artists and creatives,Learning or participation sessions,New cultural activities/products,Performances or exhibition days,Training opportunities,Volunteer opportunities,total +PROJECT OUTPUTS - FUNDED,222,83,252,490,53,105,1205 diff --git a/src/_data/viz/lcip/inspire/reach.csv b/src/_data/viz/lcip/inspire/reach.csv index aa4c93e..35f7b46 100644 --- a/src/_data/viz/lcip/inspire/reach.csv +++ b/src/_data/viz/lcip/inspire/reach.csv @@ -1,2 +1,2 @@ -THEME,Audience - in person,Broadcast/online audiences,Participants - in person -REACH,93669,116520,4411 +THEME,Audience - in person,Broadcast/online audiences,Participants - in person,total +REACH,93669,116520,4411,214600 diff --git a/src/_data/viz/lcip/inspire/religious_belief_applied.csv b/src/_data/viz/lcip/inspire/religious_belief_applied.csv index 9c2ac75..4eafc37 100644 --- a/src/_data/viz/lcip/inspire/religious_belief_applied.csv +++ b/src/_data/viz/lcip/inspire/religious_belief_applied.csv @@ -1,2 +1,2 @@ -THEME,Buddhist,Christian,Hindu,Jewish,Muslim,No religion/belief,Not known,Other,Prefer not to say,Sikh -RELIGIOUS BELIEF - APPLIED,0,32,9,1,3,28,100,1,18,0 +THEME,Buddhist,Christian,Hindu,Jewish,Muslim,No religion/belief,Not known,Other,Prefer not to say,Sikh,total +RELIGIOUS BELIEF - APPLIED,0,32,9,1,3,28,100,1,18,0,192 diff --git a/src/_data/viz/lcip/inspire/religious_belief_funded.csv b/src/_data/viz/lcip/inspire/religious_belief_funded.csv index 2eb8b09..e6f46ed 100644 --- a/src/_data/viz/lcip/inspire/religious_belief_funded.csv +++ b/src/_data/viz/lcip/inspire/religious_belief_funded.csv @@ -1,2 +1,2 @@ -THEME,Buddhist,Christian,Hindu,Jewish,Muslim,No religion/belief,Not known,Other,Prefer not to say,Sikh -RELIGIOUS BELIEF - FUNDED,0,14,0,0,0,17,18,1,13,0 +THEME,Buddhist,Christian,Hindu,Jewish,Muslim,No religion/belief,Not known,Other,Prefer not to say,Sikh,total +RELIGIOUS BELIEF - FUNDED,0,14,0,0,0,17,18,1,13,0,63 diff --git a/src/_data/viz/lcip/inspire/results.csv b/src/_data/viz/lcip/inspire/results.csv index 70fe205..51b9a29 100644 --- a/src/_data/viz/lcip/inspire/results.csv +++ b/src/_data/viz/lcip/inspire/results.csv @@ -1,2 +1,2 @@ -THEME,No. of withdrawn by applicant,No. of withdrawn by organisation,No. of funded individual artists,No. of funded organisations,No. of unsucessful artist applications,No. of unsucessful organisation applications,Total amount awarded to individual artists (£),Total amount awarded to organisations(£),Total amount not awarded to individual artists (£) -RESULTS,1,1,10,6,16,6,13773,6428,19704 +THEME,No. of withdrawn by applicant,No. of withdrawn by organisation,No. of funded individual artists,No. of funded organisations,No. of unsucessful artist applications,No. of unsucessful organisation applications,Total amount awarded to individual artists (£),Total amount awarded to organisations(£),Total amount not awarded to individual artists (£),total +RESULTS,1,1,10,6,16,6,13773,6428,19704,39945 diff --git a/src/_data/viz/lcip/inspire/sex_applied.csv b/src/_data/viz/lcip/inspire/sex_applied.csv index ed4fbf4..0ac908c 100644 --- a/src/_data/viz/lcip/inspire/sex_applied.csv +++ b/src/_data/viz/lcip/inspire/sex_applied.csv @@ -1,2 +1,2 @@ -THEME,Female,Male,Non Binary,Not known,Other,Prefer not to say -SEX - APPLIED,93,60,5,35,0,0 +THEME,Female,Male,Non Binary,Not known,Other,Prefer not to say,total +SEX - APPLIED,93,60,5,35,0,0,193 diff --git a/src/_data/viz/lcip/inspire/sex_funded.csv b/src/_data/viz/lcip/inspire/sex_funded.csv index 4850f1e..4647b1b 100644 --- a/src/_data/viz/lcip/inspire/sex_funded.csv +++ b/src/_data/viz/lcip/inspire/sex_funded.csv @@ -1,2 +1,2 @@ -THEME,Female,Male,Non Binary,Not known,Other,Prefer not to say -SEX - FUNDED,32,20,1,0,0,0 +THEME,Female,Male,Non Binary,Not known,Other,Prefer not to say,total +SEX - FUNDED,32,20,1,0,0,0,53 diff --git a/src/_data/viz/lcip/inspire/sexual_orientation_applied.csv b/src/_data/viz/lcip/inspire/sexual_orientation_applied.csv index 0e90443..51c5f39 100644 --- a/src/_data/viz/lcip/inspire/sexual_orientation_applied.csv +++ b/src/_data/viz/lcip/inspire/sexual_orientation_applied.csv @@ -1,2 +1,2 @@ -THEME,Bi-sexual,Gay,Heterosexual or Straight,Lesbian,Not known,Other,Prefer not to say -SEXUAL ORIENTATION - APPLIED,11,4,73,2,85,1,20 +THEME,Bi-sexual,Gay,Heterosexual or Straight,Lesbian,Not known,Other,Prefer not to say,total +SEXUAL ORIENTATION - APPLIED,11,4,73,2,85,1,20,196 diff --git a/src/_data/viz/lcip/inspire/sexual_orientation_funded.csv b/src/_data/viz/lcip/inspire/sexual_orientation_funded.csv index b02b4ba..be1c393 100644 --- a/src/_data/viz/lcip/inspire/sexual_orientation_funded.csv +++ b/src/_data/viz/lcip/inspire/sexual_orientation_funded.csv @@ -1,2 +1,2 @@ -THEME,Bi-sexual,Gay,Heterosexual or Straight,Lesbian,Not known,Other,Prefer not to say -SEXUAL ORIENTATION - FUNDED,2,2,38,2,8,1,0 +THEME,Bi-sexual,Gay,Heterosexual or Straight,Lesbian,Not known,Other,Prefer not to say,total +SEXUAL ORIENTATION - FUNDED,2,2,38,2,8,1,0,53 diff --git a/src/_data/viz/lcip/inspire/target_groups_applied.csv b/src/_data/viz/lcip/inspire/target_groups_applied.csv index 28cd1d8..6678be9 100644 --- a/src/_data/viz/lcip/inspire/target_groups_applied.csv +++ b/src/_data/viz/lcip/inspire/target_groups_applied.csv @@ -1,2 +1,2 @@ -THEME,Carers,Disabled people,Ethnically diverse people,LGBT+,Men,Mental health,Non-binary people,Not targeted at a specific group,Older people (over 55),People in school (teachers governors support staff etc),People with challenging lives (e.g. those who are socially excluded those from a low-income household young people at risk in care or NEET carers),Pupils in schools,Religious or Belief Communities,Women,Younger people (under 25) -TARGET GROUPS - APPLIED,3,3,3,3,2,1,3,24,6,0,3,3,1,7,4 +THEME,Carers,Disabled people,Ethnically diverse people,LGBT+,Men,Mental health,Non-binary people,Not targeted at a specific group,Older people (over 55),People in school (teachers governors support staff etc),People with challenging lives (e.g. those who are socially excluded those from a low-income household young people at risk in care or NEET carers),Pupils in schools,Religious or Belief Communities,Women,Younger people (under 25),total +TARGET GROUPS - APPLIED,3,3,3,3,2,1,3,24,6,0,3,3,1,7,4,66 diff --git a/src/_data/viz/lcip/inspire/target_groups_funded.csv b/src/_data/viz/lcip/inspire/target_groups_funded.csv index 56435f3..034efe9 100644 --- a/src/_data/viz/lcip/inspire/target_groups_funded.csv +++ b/src/_data/viz/lcip/inspire/target_groups_funded.csv @@ -1,2 +1,2 @@ -THEME,Carers,Disabled people,Ethnically diverse people,LGBT+,Men,Mental health,Non-binary people,Not targeted at a specific group,Older people (over 55),People in school (teachers governors support staff etc),People with challenging lives (e.g. those who are socially excluded those from a low-income household young people at risk in care or NEET carers),Pupils in schools,Religious or Belief Communities,Women,Younger people (under 25) -TARGET GROUPS - FUNDED,2,3,3,2,0,0,1,7,4,0,2,1,1,3,1 +THEME,Carers,Disabled people,Ethnically diverse people,LGBT+,Men,Mental health,Non-binary people,Not targeted at a specific group,Older people (over 55),People in school (teachers governors support staff etc),People with challenging lives (e.g. those who are socially excluded those from a low-income household young people at risk in care or NEET carers),Pupils in schools,Religious or Belief Communities,Women,Younger people (under 25),total +TARGET GROUPS - FUNDED,2,3,3,2,0,0,1,7,4,0,2,1,1,3,1,30 diff --git a/src/_data/viz/lcip/inspire/total_artform_applied.csv b/src/_data/viz/lcip/inspire/total_artform_applied.csv index 92957f8..2ec7d9a 100644 --- a/src/_data/viz/lcip/inspire/total_artform_applied.csv +++ b/src/_data/viz/lcip/inspire/total_artform_applied.csv @@ -1,2 +1,2 @@ -THEME,Total -TOTAL ARTFORM - APPLIED,25 +THEME,Total,total +TOTAL ARTFORM - APPLIED,25,25 diff --git a/src/_data/viz/lcip/inspire/total_artform_funded.csv b/src/_data/viz/lcip/inspire/total_artform_funded.csv index f72c059..def4a0e 100644 --- a/src/_data/viz/lcip/inspire/total_artform_funded.csv +++ b/src/_data/viz/lcip/inspire/total_artform_funded.csv @@ -1,2 +1,2 @@ -THEME,Total -TOTAL ARTFORM - FUNDED,16 +THEME,Total,total +TOTAL ARTFORM - FUNDED,16,16 diff --git a/src/_data/viz/lcip/revenue_summary.csv b/src/_data/viz/lcip/revenue_summary.csv index cf04d0a..4da8ac0 100644 --- a/src/_data/viz/lcip/revenue_summary.csv +++ b/src/_data/viz/lcip/revenue_summary.csv @@ -464,7 +464,7 @@ WARDS - RECEIVING ACTIVITY,Roundhay ,0.0,0.0,0.0,0.0 WARDS - RECEIVING ACTIVITY,Temple Newsam ,0.0,0.0,0.0,0.0 WARDS - RECEIVING ACTIVITY,Weetwood ,0.0,0.0,0.0,0.0 WARDS - RECEIVING ACTIVITY,Wetherby ,0.0,0.0,0.0,0.0 -WARDS - RECEIVING ACTIVITY,Total (activity can take place in more than one ward so will not total any rows),291.0,57.0,0.0,348.0 +WARDS - RECEIVING ACTIVITY,Total (activity can take place in more than one ward so will not total any rows),291.0,57.0,43.0,391.0 TARGET GROUPS - APPLIED,Ethnically diverse people,8.0,5.0,0.0,13.0 TARGET GROUPS - APPLIED,Ethnically diverse people,8.0,4.0,0.0,12.0 TARGET GROUPS - APPLIED,Ethnically diverse people,8.0,5.0,0.0,13.0 diff --git a/src/_data/viz/lcip/thrive/age_applied.csv b/src/_data/viz/lcip/thrive/age_applied.csv index 22651f3..77e7780 100644 --- a/src/_data/viz/lcip/thrive/age_applied.csv +++ b/src/_data/viz/lcip/thrive/age_applied.csv @@ -1,2 +1,2 @@ -THEME,18 - 24,25 - 34,35 - 44,45 - 54,55 - 64,65 - 74,75 - 84,85+,Not known,Prefer not to say -AGE - APPLIED,25,94,67,46,55,8,4,0,198,7 +THEME,18 - 24,25 - 34,35 - 44,45 - 54,55 - 64,65 - 74,75 - 84,85+,Not known,Prefer not to say,total +AGE - APPLIED,25,94,67,46,55,8,4,0,198,7,504 diff --git a/src/_data/viz/lcip/thrive/age_funded.csv b/src/_data/viz/lcip/thrive/age_funded.csv index 37a9a0c..547248a 100644 --- a/src/_data/viz/lcip/thrive/age_funded.csv +++ b/src/_data/viz/lcip/thrive/age_funded.csv @@ -1,2 +1,2 @@ -THEME,18 - 24,25 - 34,35 - 44,45 - 54,55 - 64,65 - 74,75 - 84,85+,Not known,Prefer not to say -AGE - FUNDED,23,92,59,43,48,2,3,0,198,7 +THEME,18 - 24,25 - 34,35 - 44,45 - 54,55 - 64,65 - 74,75 - 84,85+,Not known,Prefer not to say,total +AGE - FUNDED,23,92,59,43,48,2,3,0,198,7,475 diff --git a/src/_data/viz/lcip/thrive/applications_received.csv b/src/_data/viz/lcip/thrive/applications_received.csv index 58b31c9..5f353cf 100644 --- a/src/_data/viz/lcip/thrive/applications_received.csv +++ b/src/_data/viz/lcip/thrive/applications_received.csv @@ -1,2 +1,2 @@ -THEME,No. of eligible applications,No. of ineligible,Total amount of funding requested (£),from an organisation -APPLICATIONS RECEIVED,10,2,586000,12 +THEME,No. of eligible applications,No. of ineligible,Total amount of funding requested (£),from an organisation,total +APPLICATIONS RECEIVED,10,2,586000,12,586024 diff --git a/src/_data/viz/lcip/thrive/artform_applied.csv b/src/_data/viz/lcip/thrive/artform_applied.csv index c5962e6..be28007 100644 --- a/src/_data/viz/lcip/thrive/artform_applied.csv +++ b/src/_data/viz/lcip/thrive/artform_applied.csv @@ -1,2 +1,2 @@ -THEME,Circus,Combined Arts,Crafts,Dance,Design,Digital Media,Festival/Carnival,Film,Literature / Poetry / Spoken Word,Live Art,Music,Photography,Theatre,Visual Art -ARTFORM - APPLIED,0,2,0,2,0,0,1,0,2,0,2,0,2,1 +THEME,Circus,Combined Arts,Crafts,Dance,Design,Digital Media,Festival/Carnival,Film,Literature / Poetry / Spoken Word,Live Art,Music,Photography,Theatre,Visual Art,total +ARTFORM - APPLIED,0,2,0,2,0,0,1,0,2,0,2,0,2,1,12 diff --git a/src/_data/viz/lcip/thrive/artform_funded.csv b/src/_data/viz/lcip/thrive/artform_funded.csv index 101e105..18e1c0d 100644 --- a/src/_data/viz/lcip/thrive/artform_funded.csv +++ b/src/_data/viz/lcip/thrive/artform_funded.csv @@ -1,2 +1,2 @@ -THEME,Circus,Combined Arts,Crafts,Dance,Design,Digital Media,Festival/Carnival,Film,Literature / Poetry / Spoken Word,Live Art,Music,Photography,Theatre,Visual Art -ARTFORM - FUNDED,0,2,0,2,0,0,1,0,0,0,2,0,2,1 +THEME,Circus,Combined Arts,Crafts,Dance,Design,Digital Media,Festival/Carnival,Film,Literature / Poetry / Spoken Word,Live Art,Music,Photography,Theatre,Visual Art,total +ARTFORM - FUNDED,0,2,0,2,0,0,1,0,0,0,2,0,2,1,10 diff --git a/src/_data/viz/lcip/thrive/carer_applied.csv b/src/_data/viz/lcip/thrive/carer_applied.csv index 8254655..3b2a02b 100644 --- a/src/_data/viz/lcip/thrive/carer_applied.csv +++ b/src/_data/viz/lcip/thrive/carer_applied.csv @@ -1,2 +1,2 @@ -THEME,Do you consider yourself to be a carer?,No,Not known,Prefer not to say,Yes -CARER - APPLIED,0,0,451,6,53 +THEME,Do you consider yourself to be a carer?,No,Not known,Prefer not to say,Yes,total +CARER - APPLIED,0,0,451,6,53,510 diff --git a/src/_data/viz/lcip/thrive/carer_funded.csv b/src/_data/viz/lcip/thrive/carer_funded.csv index e9ce580..13b86bd 100644 --- a/src/_data/viz/lcip/thrive/carer_funded.csv +++ b/src/_data/viz/lcip/thrive/carer_funded.csv @@ -1,2 +1,2 @@ -THEME,Do you consider yourself to be a carer?,No,Not known,Prefer not to say,Yes -CARER - FUNDED,0,0,423,6,53 +THEME,Do you consider yourself to be a carer?,No,Not known,Prefer not to say,Yes,total +CARER - FUNDED,0,0,423,6,53,482 diff --git a/src/_data/viz/lcip/thrive/contribution_to_workforce.csv b/src/_data/viz/lcip/thrive/contribution_to_workforce.csv index 9194835..8a0e2e5 100644 --- a/src/_data/viz/lcip/thrive/contribution_to_workforce.csv +++ b/src/_data/viz/lcip/thrive/contribution_to_workforce.csv @@ -1,2 +1,2 @@ -THEME,Artists/Creatives,Total,Volunteers -CONTRIBUTION TO WORKFORCE,3527,3839,312 +THEME,Artists/Creatives,Total,Volunteers,total +CONTRIBUTION TO WORKFORCE,3527,3839,312,7678 diff --git a/src/_data/viz/lcip/thrive/disability_applied.csv b/src/_data/viz/lcip/thrive/disability_applied.csv index 8ecbdc9..3514a7d 100644 --- a/src/_data/viz/lcip/thrive/disability_applied.csv +++ b/src/_data/viz/lcip/thrive/disability_applied.csv @@ -1,2 +1,2 @@ -THEME,Hearing impairment,Learning disability,Long-standing illness or health condition,Mental health condition,Neuro Diverse,Not known,Other,Physical impairment,Prefer not to say,Visual impairment -DISABILITY - APPLIED,1,4,10,3,9,302,88,4,19,1 +THEME,Hearing impairment,Learning disability,Long-standing illness or health condition,Mental health condition,Neuro Diverse,Not known,Other,Physical impairment,Prefer not to say,Visual impairment,total +DISABILITY - APPLIED,1,4,10,3,9,302,88,4,19,1,441 diff --git a/src/_data/viz/lcip/thrive/disability_funded.csv b/src/_data/viz/lcip/thrive/disability_funded.csv index dd5f43b..2338cae 100644 --- a/src/_data/viz/lcip/thrive/disability_funded.csv +++ b/src/_data/viz/lcip/thrive/disability_funded.csv @@ -1,2 +1,2 @@ -THEME,Hearing impairment,Learning disability,Long-standing illness or health condition,Mental health condition,Neuro Diverse,Not known,Other,Physical impairment,Prefer not to say,Visual impairment -DISABILITY - FUNDED,1,4,10,3,9,273,88,4,19,1 +THEME,Hearing impairment,Learning disability,Long-standing illness or health condition,Mental health condition,Neuro Diverse,Not known,Other,Physical impairment,Prefer not to say,Visual impairment,total +DISABILITY - FUNDED,1,4,10,3,9,273,88,4,19,1,412 diff --git a/src/_data/viz/lcip/thrive/ethnic_origin_applied.csv b/src/_data/viz/lcip/thrive/ethnic_origin_applied.csv index d95f7b8..086ee61 100644 --- a/src/_data/viz/lcip/thrive/ethnic_origin_applied.csv +++ b/src/_data/viz/lcip/thrive/ethnic_origin_applied.csv @@ -1,2 +1,2 @@ -THEME,African,Any other Asian background,Any other Black background,Any other background,Any other mixed/multiple ethnic group,Any other white background,Arab,Asian or Asian British,Bangladeshi,Black or Black British,Caribbean,Chinese,Indian,Kashmiri,Mixed/ multiple ethnic group,Other ethnic groups,Pakistani,Prefer not to say,White,White British,White English,White Gypsy or Traveller,White Irish,White Northern Irish,White Scottish,White Welsh,White and Asian,White and Black African,White and Black Caribbean -ETHNIC ORIGIN - APPLIED,2,6,4,8,5,26,0,0,1,3,9,2,13,0,1,1,3,29,18,23,181,0,6,1,2,0,1,5,1 +THEME,African,Any other Asian background,Any other Black background,Any other background,Any other mixed/multiple ethnic group,Any other white background,Arab,Asian or Asian British,Bangladeshi,Black or Black British,Caribbean,Chinese,Indian,Kashmiri,Mixed/ multiple ethnic group,Other ethnic groups,Pakistani,Prefer not to say,White,White British,White English,White Gypsy or Traveller,White Irish,White Northern Irish,White Scottish,White Welsh,White and Asian,White and Black African,White and Black Caribbean,total +ETHNIC ORIGIN - APPLIED,2,6,4,8,5,26,0,0,1,3,9,2,13,0,1,1,3,29,18,23,181,0,6,1,2,0,1,5,1,351 diff --git a/src/_data/viz/lcip/thrive/ethnic_origin_funded.csv b/src/_data/viz/lcip/thrive/ethnic_origin_funded.csv index b96ca3c..848f321 100644 --- a/src/_data/viz/lcip/thrive/ethnic_origin_funded.csv +++ b/src/_data/viz/lcip/thrive/ethnic_origin_funded.csv @@ -1,2 +1,2 @@ -THEME,African,Any other Asian background,Any other Black background,Any other background,Any other mixed/multiple ethnic group,Any other white background,Arab,Asian or Asian British,Bangladeshi,Black or Black British,Caribbean,Chinese,Indian,Kashmiri,Mixed/ multiple ethnic group,Other ethnic groups,Pakistani,Prefer not to say,White,White British,White English,White Gypsy or Traveller,White Irish,White Northern Irish,White Scottish,White Welsh,White and Asian,White and Black African,White and Black Caribbean -ETHNIC ORIGIN - FUNDED,2,6,4,8,5,26,0,0,1,3,9,2,13,0,1,1,3,7,18,23,175,0,6,0,2,0,1,5,1 +THEME,African,Any other Asian background,Any other Black background,Any other background,Any other mixed/multiple ethnic group,Any other white background,Arab,Asian or Asian British,Bangladeshi,Black or Black British,Caribbean,Chinese,Indian,Kashmiri,Mixed/ multiple ethnic group,Other ethnic groups,Pakistani,Prefer not to say,White,White British,White English,White Gypsy or Traveller,White Irish,White Northern Irish,White Scottish,White Welsh,White and Asian,White and Black African,White and Black Caribbean,total +ETHNIC ORIGIN - FUNDED,2,6,4,8,5,26,0,0,1,3,9,2,13,0,1,1,3,7,18,23,175,0,6,0,2,0,1,5,1,322 diff --git a/src/_data/viz/lcip/thrive/funding.csv b/src/_data/viz/lcip/thrive/funding.csv index 436fd73..87101ff 100644 --- a/src/_data/viz/lcip/thrive/funding.csv +++ b/src/_data/viz/lcip/thrive/funding.csv @@ -1,2 +1,2 @@ -THEME,Funding invested from Leeds City Council,Funding invested from others -FUNDING,244300,104700 +THEME,Funding invested from Leeds City Council,Funding invested from others,total +FUNDING,244300,104700,349000 diff --git a/src/_data/viz/lcip/thrive/funding_advice_sessions.csv b/src/_data/viz/lcip/thrive/funding_advice_sessions.csv index cb83eff..5d04204 100644 --- a/src/_data/viz/lcip/thrive/funding_advice_sessions.csv +++ b/src/_data/viz/lcip/thrive/funding_advice_sessions.csv @@ -1,2 +1,2 @@ -THEME,No. of funding surgeries booked,No. of funding surgeries offered,No. of in person sessions,No. of online/Telephone sessions -FUNDING ADVICE SESSIONS,0,0,0,0 +THEME,No. of funding surgeries booked,No. of funding surgeries offered,No. of in person sessions,No. of online/Telephone sessions,total +FUNDING ADVICE SESSIONS,0,0,0,0,0 diff --git a/src/_data/viz/lcip/thrive/gender_registered_at_birth_applied.csv b/src/_data/viz/lcip/thrive/gender_registered_at_birth_applied.csv index 296c7f9..2814924 100644 --- a/src/_data/viz/lcip/thrive/gender_registered_at_birth_applied.csv +++ b/src/_data/viz/lcip/thrive/gender_registered_at_birth_applied.csv @@ -1,2 +1,2 @@ -THEME,Not known,Prefer not to say,Total -GENDER REGISTERED AT BIRTH - APPLIED,184,0,71 +THEME,Not known,Prefer not to say,Total,total +GENDER REGISTERED AT BIRTH - APPLIED,184,0,71,255 diff --git a/src/_data/viz/lcip/thrive/gender_registered_at_birth_funded.csv b/src/_data/viz/lcip/thrive/gender_registered_at_birth_funded.csv index 132dd45..09f8e5f 100644 --- a/src/_data/viz/lcip/thrive/gender_registered_at_birth_funded.csv +++ b/src/_data/viz/lcip/thrive/gender_registered_at_birth_funded.csv @@ -1,2 +1,2 @@ -THEME,Not known,Prefer not to say,Total -GENDER REGISTERED AT BIRTH - FUNDED,184,0,71 +THEME,Not known,Prefer not to say,Total,total +GENDER REGISTERED AT BIRTH - FUNDED,184,0,71,255 diff --git a/src/_data/viz/lcip/thrive/leeds_culture_programmes_website.csv b/src/_data/viz/lcip/thrive/leeds_culture_programmes_website.csv index d8b83eb..02fadba 100644 --- a/src/_data/viz/lcip/thrive/leeds_culture_programmes_website.csv +++ b/src/_data/viz/lcip/thrive/leeds_culture_programmes_website.csv @@ -1,2 +1,2 @@ -THEME,No. applications started,No. of applications completed -LEEDS CULTURE PROGRAMMES WEBSITE,0,0 +THEME,No. applications started,No. of applications completed,total +LEEDS CULTURE PROGRAMMES WEBSITE,0,0,0 diff --git a/src/_data/viz/lcip/thrive/project_outputs_applied.csv b/src/_data/viz/lcip/thrive/project_outputs_applied.csv index a5404a6..3fef4cd 100644 --- a/src/_data/viz/lcip/thrive/project_outputs_applied.csv +++ b/src/_data/viz/lcip/thrive/project_outputs_applied.csv @@ -1,2 +1,2 @@ -THEME,Days employment for freelance artists and creatives,Learning or participation sessions,New cultural activities/products,Performances or exhibition days,Training opportunities,Volunteer opportunities -PROJECT OUTPUTS - APPLIED,5856,3703,429,4088,195,325 +THEME,Days employment for freelance artists and creatives,Learning or participation sessions,New cultural activities/products,Performances or exhibition days,Training opportunities,Volunteer opportunities,total +PROJECT OUTPUTS - APPLIED,5856,3703,429,4088,195,325,14596 diff --git a/src/_data/viz/lcip/thrive/project_outputs_funded.csv b/src/_data/viz/lcip/thrive/project_outputs_funded.csv index e40321c..bc43738 100644 --- a/src/_data/viz/lcip/thrive/project_outputs_funded.csv +++ b/src/_data/viz/lcip/thrive/project_outputs_funded.csv @@ -1,2 +1,2 @@ -THEME,Days employment for freelance artists and creatives,Learning or participation sessions,New cultural activities/products,Performances or exhibition days,Training opportunities,Volunteer opportunities -PROJECT OUTPUTS - FUNDED,5708,3670,276,4057,180,251 +THEME,Days employment for freelance artists and creatives,Learning or participation sessions,New cultural activities/products,Performances or exhibition days,Training opportunities,Volunteer opportunities,total +PROJECT OUTPUTS - FUNDED,5708,3670,276,4057,180,251,14142 diff --git a/src/_data/viz/lcip/thrive/reach.csv b/src/_data/viz/lcip/thrive/reach.csv index 1e354af..9e740ff 100644 --- a/src/_data/viz/lcip/thrive/reach.csv +++ b/src/_data/viz/lcip/thrive/reach.csv @@ -1,2 +1,2 @@ -THEME,Audience - in person,Broadcast/online audiences,Participants - in person -REACH,813836,10371330,21135 +THEME,Audience - in person,Broadcast/online audiences,Participants - in person,total +REACH,813836,10371330,21135,11206301 diff --git a/src/_data/viz/lcip/thrive/religious_belief_applied.csv b/src/_data/viz/lcip/thrive/religious_belief_applied.csv index 9dc45eb..353efdf 100644 --- a/src/_data/viz/lcip/thrive/religious_belief_applied.csv +++ b/src/_data/viz/lcip/thrive/religious_belief_applied.csv @@ -1,2 +1,2 @@ -THEME,Buddhist,Christian,Hindu,Jewish,Muslim,No religion/belief,Not known,Other,Prefer not to say,Sikh -RELIGIOUS BELIEF - APPLIED,0,4,0,0,5,62,402,11,33,0 +THEME,Buddhist,Christian,Hindu,Jewish,Muslim,No religion/belief,Not known,Other,Prefer not to say,Sikh,total +RELIGIOUS BELIEF - APPLIED,0,4,0,0,5,62,402,11,33,0,517 diff --git a/src/_data/viz/lcip/thrive/religious_belief_funded.csv b/src/_data/viz/lcip/thrive/religious_belief_funded.csv index 6150f4f..f1a1835 100644 --- a/src/_data/viz/lcip/thrive/religious_belief_funded.csv +++ b/src/_data/viz/lcip/thrive/religious_belief_funded.csv @@ -1,2 +1,2 @@ -THEME,Buddhist,Christian,Hindu,Jewish,Muslim,No religion/belief,Not known,Other,Prefer not to say,Sikh -RELIGIOUS BELIEF - FUNDED,0,4,0,0,5,61,395,11,11,0 +THEME,Buddhist,Christian,Hindu,Jewish,Muslim,No religion/belief,Not known,Other,Prefer not to say,Sikh,total +RELIGIOUS BELIEF - FUNDED,0,4,0,0,5,61,395,11,11,0,487 diff --git a/src/_data/viz/lcip/thrive/results.csv b/src/_data/viz/lcip/thrive/results.csv index 6672320..e1a8ca7 100644 --- a/src/_data/viz/lcip/thrive/results.csv +++ b/src/_data/viz/lcip/thrive/results.csv @@ -1,2 +1,2 @@ -THEME,No. of withdrawn by applicant,No. of withdrawn by organisation,No. of funded individual artists,No. of funded organisations,No. of unsucessful artist applications,No. of unsucessful organisations applications,Total amount awarded to individual artists,Total amount awarded to organisations (£) -RESULTS,0,0,0,10,0,0,0,349000 +THEME,No. of withdrawn by applicant,No. of withdrawn by organisation,No. of funded individual artists,No. of funded organisations,No. of unsucessful artist applications,No. of unsucessful organisations applications,Total amount awarded to individual artists,Total amount awarded to organisations (£),total +RESULTS,0,0,0,10,0,0,0,349000,349010 diff --git a/src/_data/viz/lcip/thrive/sex_applied.csv b/src/_data/viz/lcip/thrive/sex_applied.csv index 22049f2..0fea4c4 100644 --- a/src/_data/viz/lcip/thrive/sex_applied.csv +++ b/src/_data/viz/lcip/thrive/sex_applied.csv @@ -1,2 +1,2 @@ -THEME,Female,Male,Non Binary,Not known,Other,Prefer not to say -SEX - APPLIED,197,92,5,65,1,2 +THEME,Female,Male,Non Binary,Not known,Other,Prefer not to say,total +SEX - APPLIED,197,92,5,65,1,2,362 diff --git a/src/_data/viz/lcip/thrive/sex_funded.csv b/src/_data/viz/lcip/thrive/sex_funded.csv index c9132b9..6f5faf4 100644 --- a/src/_data/viz/lcip/thrive/sex_funded.csv +++ b/src/_data/viz/lcip/thrive/sex_funded.csv @@ -1,2 +1,2 @@ -THEME,Female,Male,Non Binary,Not known,Other,Prefer not to say -SEX - FUNDED,193,88,5,37,1,2 +THEME,Female,Male,Non Binary,Not known,Other,Prefer not to say,total +SEX - FUNDED,193,88,5,37,1,2,326 diff --git a/src/_data/viz/lcip/thrive/sexual_orientation_applied.csv b/src/_data/viz/lcip/thrive/sexual_orientation_applied.csv index 1e8444d..2fb83be 100644 --- a/src/_data/viz/lcip/thrive/sexual_orientation_applied.csv +++ b/src/_data/viz/lcip/thrive/sexual_orientation_applied.csv @@ -1,2 +1,2 @@ -THEME,Bi-sexual,Gay,Heterosexual or Straight,Lesbian,Not known,Other,Prefer not to say -SEXUAL ORIENTATION - APPLIED,11,11,123,3,350,8,13 +THEME,Bi-sexual,Gay,Heterosexual or Straight,Lesbian,Not known,Other,Prefer not to say,total +SEXUAL ORIENTATION - APPLIED,11,11,123,3,350,8,13,519 diff --git a/src/_data/viz/lcip/thrive/sexual_orientation_funded.csv b/src/_data/viz/lcip/thrive/sexual_orientation_funded.csv index 94a8650..8c93552 100644 --- a/src/_data/viz/lcip/thrive/sexual_orientation_funded.csv +++ b/src/_data/viz/lcip/thrive/sexual_orientation_funded.csv @@ -1,2 +1,2 @@ -THEME,Bi-sexual,Gay,Heterosexual or Straight,Lesbian,Not known,Other,Prefer not to say -SEXUAL ORIENTATION - FUNDED,11,11,122,3,321,8,13 +THEME,Bi-sexual,Gay,Heterosexual or Straight,Lesbian,Not known,Other,Prefer not to say,total +SEXUAL ORIENTATION - FUNDED,11,11,122,3,321,8,13,489 diff --git a/src/_data/viz/lcip/thrive/target_groups_applied.csv b/src/_data/viz/lcip/thrive/target_groups_applied.csv index 36314a9..5f1bfe8 100644 --- a/src/_data/viz/lcip/thrive/target_groups_applied.csv +++ b/src/_data/viz/lcip/thrive/target_groups_applied.csv @@ -1,2 +1,2 @@ -THEME,Carers,Disabled people,Ethnically diverse people,LGBT+,Men,Mental health,Non-binary people,Not targeted at a specific group,Older people (over 55),People in school (teachers governors support staff etc),People with challenging lives (e.g. those who are socially excluded those from a low-income household young people at risk in care or NEET carers),Pupils in schools,Religious or Belief Communities,Women,Younger people (under 25) -TARGET GROUPS - APPLIED,0,4,5,1,0,1,0,4,1,1,3,3,0,0,8 +THEME,Carers,Disabled people,Ethnically diverse people,LGBT+,Men,Mental health,Non-binary people,Not targeted at a specific group,Older people (over 55),People in school (teachers governors support staff etc),People with challenging lives (e.g. those who are socially excluded those from a low-income household young people at risk in care or NEET carers),Pupils in schools,Religious or Belief Communities,Women,Younger people (under 25),total +TARGET GROUPS - APPLIED,0,4,5,1,0,1,0,4,1,1,3,3,0,0,8,31 diff --git a/src/_data/viz/lcip/thrive/target_groups_funded.csv b/src/_data/viz/lcip/thrive/target_groups_funded.csv index effbbf2..502e155 100644 --- a/src/_data/viz/lcip/thrive/target_groups_funded.csv +++ b/src/_data/viz/lcip/thrive/target_groups_funded.csv @@ -1,2 +1,2 @@ -THEME,Carers,Disabled people,Ethnically diverse people,LGBT+,Men,Mental health,Non-binary people,Not targeted at a specific group,Older people (over 55),People in school (teachers governors support staff etc),People with challenging lives (e.g. those who are socially excluded those from a low-income household young people at risk in care or NEET carers),Pupils in schools,Religious or Belief Communities,Women,Younger people (under 25) -TARGET GROUPS - FUNDED,0,3,4,1,0,0,0,3,1,1,2,3,0,0,8 +THEME,Carers,Disabled people,Ethnically diverse people,LGBT+,Men,Mental health,Non-binary people,Not targeted at a specific group,Older people (over 55),People in school (teachers governors support staff etc),People with challenging lives (e.g. those who are socially excluded those from a low-income household young people at risk in care or NEET carers),Pupils in schools,Religious or Belief Communities,Women,Younger people (under 25),total +TARGET GROUPS - FUNDED,0,3,4,1,0,0,0,3,1,1,2,3,0,0,8,26 diff --git a/src/_data/viz/lcip/thrive/total_artform_applied.csv b/src/_data/viz/lcip/thrive/total_artform_applied.csv index f0e79ba..8ea7ff2 100644 --- a/src/_data/viz/lcip/thrive/total_artform_applied.csv +++ b/src/_data/viz/lcip/thrive/total_artform_applied.csv @@ -1,2 +1,2 @@ -THEME,Total (should equal same as row 11) -TOTAL ARTFORM - APPLIED,12 +THEME,Total (should equal same as row 11),total +TOTAL ARTFORM - APPLIED,12,12 diff --git a/src/_data/viz/lcip/thrive/total_artform_funded.csv b/src/_data/viz/lcip/thrive/total_artform_funded.csv index 4b2ee74..f79cd88 100644 --- a/src/_data/viz/lcip/thrive/total_artform_funded.csv +++ b/src/_data/viz/lcip/thrive/total_artform_funded.csv @@ -1,2 +1,2 @@ -THEME,Total (should equal same as row 15) -TOTAL ARTFORM - FUNDED,10 +THEME,Total (should equal same as row 15),total +TOTAL ARTFORM - FUNDED,10,10 diff --git a/src/_includes/css/oi.css b/src/_includes/css/oi.css index d75cb1e..2077e62 100644 --- a/src/_includes/css/oi.css +++ b/src/_includes/css/oi.css @@ -108,7 +108,7 @@ header nav ul { padding-top:2em; } header nav ul li { display: inline-block; } -header nav ul > li > a { padding: 0.5em 1em; display: inline-block; width: 100%; color: inherit; } +header nav ul > li > a { padding: 1em 1em; display: inline-block; width: 100%; color: inherit; } .header-holder { max-width: 1300px; position: relative; margin: auto;} .about { padding: 2em; margin-bottom: 1em; border-style: solid; border-width: 1px; border-color: #bbbb;} diff --git a/src/lcip/activate/artforms/index.njk b/src/lcip/activate/artforms/index.njk new file mode 100644 index 0000000..396a238 --- /dev/null +++ b/src/lcip/activate/artforms/index.njk @@ -0,0 +1,44 @@ +--- +title: Activate - Artforms +--- + +{% comp "dashboard.panels", { columns: 1 } %} + + {% comp "dashboard.pane", { bg: '#004563', color: '#ffffff' } %} +

Applied

+ {% endcomp %} +{% endcomp %} +{% comp "dashboard.panels", { columns: 2 } %} + + {% comp "dashboard.pane" %} +

Festival/Carnival

+ {% comp "dashboard.big_number", { number: viz.lcip.activate.artform_applied['rows'][0]['Festival/Carnival']} %}{% endcomp %} + {% endcomp %} + + {% comp "dashboard.pane" %} +

Music

+ {% comp "dashboard.big_number", { number: viz.lcip.activate.artform_applied['rows'][0]['Music'] } %}{% endcomp %} + {% endcomp %} + +{% endcomp %} + +{% comp "dashboard.panels", { columns: 1 } %} + + {% comp "dashboard.pane", { bg: '#004563', color: '#ffffff' } %} +

Funded

+ {% endcomp %} +{% endcomp %} + +{% comp "dashboard.panels", { columns: 2 } %} + + {% comp "dashboard.pane" %} +

Festival/Carnival

+ {% comp "dashboard.big_number", { number: viz.lcip.activate.artform_funded['rows'][0]['Festival/Carnival']} %}{% endcomp %} + {% endcomp %} + + {% comp "dashboard.pane" %} +

Music

+ {% comp "dashboard.big_number", { number: viz.lcip.activate.artform_funded['rows'][0]['Music']} %}{% endcomp %} + {% endcomp %} + +{% endcomp %} \ No newline at end of file diff --git a/src/lcip/activate/funding-invested/index.njk b/src/lcip/activate/funding-invested/index.njk index 9d1afad..b3bf79f 100644 --- a/src/lcip/activate/funding-invested/index.njk +++ b/src/lcip/activate/funding-invested/index.njk @@ -6,17 +6,17 @@ title: Activate - Funding Invested {% comp "dashboard.pane" %}

Funding invested from Leeds City Council

- {% comp "dashboard.big_number", { number: viz.lcip.activate.funding['rows'][0]['Funding invested from Leeds City Council'], prefix: '£' } %}{% endcomp %} + {% comp "dashboard.big_number", { number: viz.lcip.activate.funding['rows'][0]['Funding invested from Leeds City Council'], prefix: '£', fontsize:'2.5rem' } %}{% endcomp %} {% endcomp %} {% comp "dashboard.pane" %}

Funding invested from others

- {% comp "dashboard.big_number", { number: viz.lcip.activate.funding['rows'][0]['Funding invested from others'], prefix: '£' } %}{% endcomp %} + {% comp "dashboard.big_number", { number: viz.lcip.activate.funding['rows'][0]['Funding invested from others'], prefix: '£' , fontsize:'2.5rem' } %}{% endcomp %} {% endcomp %} {% comp "dashboard.pane" %}

Cumulative
spend

- {% comp "dashboard.big_number", { number: (viz.lcip.activate.funding['rows'][0]['Funding invested from Leeds City Council']) + (viz.lcip.activate.funding['rows'][0]['Funding invested from others']), prefix: '£' } %}{% endcomp %} + {% comp "dashboard.big_number", { number: (viz.lcip.activate.funding['rows'][0]['Funding invested from Leeds City Council']) + (viz.lcip.activate.funding['rows'][0]['Funding invested from others']), prefix: '£' , fontsize:'2.5rem' } %}{% endcomp %} {% endcomp %} {% endcomp %} \ No newline at end of file diff --git a/src/lcip/activate/index.njk b/src/lcip/activate/index.njk index 9fbf08e..0ddbd9e 100644 --- a/src/lcip/activate/index.njk +++ b/src/lcip/activate/index.njk @@ -55,48 +55,65 @@ title: Activate

Programme Results

{% endcomp %} + {% comp "dashboard.pane", { link: "/lcip/activate/funding-invested/" } %} +

Funding invested

+ {% comp "dashboard.big_number", { number: viz.lcip.activate.funding['rows'][0]['total'], fontsize: '2.75rem'} %}{% endcomp %} +

Investment

+ {% endcomp %} + {% endcomp %} - {% comp "dashboard.pane", { link: "/lcip/activate/results/" } %} -

Funding
awarded

+{% comp "dashboard.panels", { columns: 3 } %} + + {% comp "dashboard.pane", { link: "/lcip/activate/project-outputs/" } %} +

Project
Outputs

{% comp "dashboard.big_number", { - prefix: '£', - number: (viz.lcip.activate.results['rows'][0]['Total amount awarded to organisations (£)']), - fontsize: '2.75rem'} %} + number: viz.lcip.activate.project_outputs_funded['rows'][0]['total'], fontsize: '2.75rem' } %} {% endcomp %} -

Programme Results

+

Project Outputs

{% endcomp %} - {% comp "dashboard.pane", { link: "/lcip/activate/funding-invested/" } %} -

Funding invested

- {% comp "dashboard.big_number", { number: viz.lcip.activate.funding['rows'][0]['Funding invested from others'] + viz.lcip.activate.funding['rows'][0]['Funding invested from Leeds City Council'], fontsize: '2.75rem'} %}{% endcomp %} -

Investment

+ + {% comp "dashboard.pane", { link: "/lcip/activate/artforms/" } %} +

Funded
Artforms

+ {% comp "dashboard.big_number", { + number: (viz.lcip.activate.artform_funded['rows'][0]['total']), + fontsize: '2.75rem'} %} + {% endcomp %} +

Artforms

{% endcomp %} - {% comp "dashboard.pane", { link: "/lcip/activate/workforce/" } %} -

Workforce

+ + {% comp "dashboard.pane", { link: "/lcip/activate/target-groups/" } %} +

Target
Groups

{% comp "dashboard.big_number", { - number: (viz.lcip.activate.contribution_to_workforce['rows'][0]['Artists/Creatives']) + (viz.lcip.activate.contribution_to_workforce['rows'][0]['Volunteers']), fontsize: '2.75rem' - } %} + number: (viz.lcip.activate.target_groups_funded['rows'][0]['total']), + fontsize: '2.75rem'} %} {% endcomp %} -

Workforce

+

Target Groups

{% endcomp %} + {% endcomp %} + +{% comp "dashboard.panels", { columns: 2 } %} + {% comp "dashboard.pane", { link: "/lcip/activate/reach/" } %}

Audience

{% comp "dashboard.big_number", { - number: (viz.lcip.activate.reach['rows'][0]['Audience - in person']) + (viz.lcip.activate.reach['rows'][0]['Broadcast/online audiences']) + (viz.lcip.activate.reach['rows'][0]['Participants - in person']), fontsize: '2.75rem' } %} + number: (viz.lcip.activate.reach['rows'][0]['total']), fontsize: '2.75rem' } %} {% endcomp %}

Reach

{% endcomp %} - {% comp "dashboard.pane", { link: "/lcip/activate/project-outputs/" } %} -

Project outcomes

+ {% comp "dashboard.pane", { link: "/lcip/activate/workforce/" } %} +

Workforce

{% comp "dashboard.big_number", { - number: viz.lcip.activate.project_outputs_funded['rows'][0]['Performances or exhibition days'], fontsize: '2.75rem' } %} + number: (viz.lcip.activate.contribution_to_workforce['rows'][0]['total']), fontsize: '2.75rem' + } %} {% endcomp %} -

Project Outputs

+

Workforce

{% endcomp %} + {% endcomp %} diff --git a/src/lcip/activate/reach/index.njk b/src/lcip/activate/reach/index.njk index fd3bc33..9e6699d 100644 --- a/src/lcip/activate/reach/index.njk +++ b/src/lcip/activate/reach/index.njk @@ -6,19 +6,19 @@ title: Activate - Reach {% comp "dashboard.pane", { link: "/lcip/activate/advice-sessions" } %}

Audience - in person

- {% comp "dashboard.big_number", { number: viz.lcip.activate.reach['rows'][0]['Audience - in person'] } %} + {% comp "dashboard.big_number", { number: viz.lcip.activate.reach['rows'][0]['Audience - in person'], fontsize: '2.5rem' } %} {% endcomp %} {% endcomp %} {% comp "dashboard.pane", { link: "/lcip/activate/advice-sessions" } %}

Broadcast/online audiences

- {% comp "dashboard.big_number", { number: viz.lcip.activate.reach['rows'][0]['Broadcast/online audiences'] } %} + {% comp "dashboard.big_number", { number: viz.lcip.activate.reach['rows'][0]['Broadcast/online audiences'], fontsize: '2.5rem' } %} {% endcomp %} {% endcomp %} {% comp "dashboard.pane", { link: "/lcip/activate/advice-sessions" } %}

Participants - in person

- {% comp "dashboard.big_number", { number: viz.lcip.activate.reach['rows'][0]['Participants - in person'] } %} + {% comp "dashboard.big_number", { number: viz.lcip.activate.reach['rows'][0]['Participants - in person'], fontsize: '2.5rem' } %} {% endcomp %} {% endcomp %} diff --git a/src/lcip/cultural-anchors/applications/index.njk b/src/lcip/cultural-anchors/applications/index.njk index cd20ecb..76e4f63 100644 --- a/src/lcip/cultural-anchors/applications/index.njk +++ b/src/lcip/cultural-anchors/applications/index.njk @@ -2,27 +2,14 @@ title: Cultural Anchors - Applications --- -{% comp "dashboard.panels", { columns: 3 } %} - - {% comp "dashboard.pane" %} -

Eligible applications

- {% comp "dashboard.big_number", { number: viz.lcip.cultural_anchors.applications_received['rows'][0]['No. of eligible applications'] } %}{% endcomp %} - {% endcomp %} - - {% comp "dashboard.pane" %} -

Ineligible applications

- {% comp "dashboard.big_number", { number: viz.lcip.cultural_anchors.applications_received['rows'][0]['No. of ineligible'] } %}{% endcomp %} - {% endcomp %} +{% comp "dashboard.panels", { columns: 2 } %} {% comp "dashboard.pane" %}

Organisations

{% comp "dashboard.big_number", { number: viz.lcip.cultural_anchors.applications_received['rows'][0]['from an organisation'] } %}{% endcomp %} {% endcomp %} - {% endcomp %} - {% comp "dashboard.panels", { columns: 4 } %} - - {% comp "dashboard.pane", { columns: 2, rows: 2 } %} + {% comp "dashboard.pane", { columns: 1, rows: 2 } %}

Applications received by ward

{% comp "dashboard.embedded_figure" %}

This map represents the number of applications received from each Leeds ward.

@@ -45,40 +32,10 @@ title: Cultural Anchors - Applications {% endcomp %} {% endcomp %} -{% comp "dashboard.pane", { columns: 2, rows: 2 } %} - -

Wards receiving activity

- {% comp "dashboard.embedded_figure" %} -

This map represents the number of funding applications awarded in each Leeds ward.

- - {{ comp.oi.map.hex_cartogram({ - config: { - hexjson: hex.wards_leeds, - data: viz.lcip.cultural_anchors.wards_receiving_activity, - scale: 'rgb(9, 156, 161) 0%, rgb(5, 64, 89) 100%', - matchKey: 'ward_code', - value: 'value', - height: 600, - width: 600, - min: 0, - max: 2, - label: '{{ n | slice(0,3) }}', - tooltip: '{{ n }}: {{ value }}' - } - }) | safe }} - - {% endcomp %} - {% endcomp %} - -{% endcomp %} - -{% comp "dashboard.panels", { columns: 1 } %} - - {% comp "dashboard.pane" %} + {% comp "dashboard.pane" %}

Funding requested

{% comp "dashboard.big_number", { fontsize: '2.6em', number: viz.lcip.cultural_anchors.applications_received['rows'][0]['Total amount of funding requested (£)'], prefix: "£"} %}{% endcomp %} {% endcomp %} - {% endcomp %} diff --git a/src/lcip/cultural-anchors/artforms/index.njk b/src/lcip/cultural-anchors/artforms/index.njk new file mode 100644 index 0000000..41d3b00 --- /dev/null +++ b/src/lcip/cultural-anchors/artforms/index.njk @@ -0,0 +1,56 @@ +--- +title: Cultural Anchors - Artforms +--- + +{% comp "dashboard.panels", { columns: 1 } %} + + {% comp "dashboard.pane", { bg: '#004563', color: '#ffffff' } %} +

Applied

+ {% endcomp %} +{% endcomp %} + + +{% comp "dashboard.panels", { columns: 3 } %} + + {% comp "dashboard.pane" %} +

Dance

+ {% comp "dashboard.big_number", { number: viz.lcip.cultural_anchors.artform_applied['rows'][0]['Dance']} %}{% endcomp %} + {% endcomp %} + + {% comp "dashboard.pane" %} +

Music

+ {% comp "dashboard.big_number", { number: viz.lcip.cultural_anchors.artform_applied['rows'][0]['Music'] } %}{% endcomp %} + {% endcomp %} + + {% comp "dashboard.pane" %} +

Theatre

+ {% comp "dashboard.big_number", { number: viz.lcip.cultural_anchors.artform_applied['rows'][0]['Theatre'] } %}{% endcomp %} + {% endcomp %} + +{% endcomp %} + +{% comp "dashboard.panels", { columns: 1 } %} + + {% comp "dashboard.pane", { bg: '#004563', color: '#ffffff' } %} +

Funded

+ {% endcomp %} +{% endcomp %} + +{% comp "dashboard.panels", { columns: 3 } %} + + {% comp "dashboard.pane" %} +

Dance

+ {% comp "dashboard.big_number", { number: viz.lcip.cultural_anchors.artform_funded['rows'][0]['Dance']} %}{% endcomp %} + {% endcomp %} + + {% comp "dashboard.pane" %} +

Music

+ {% comp "dashboard.big_number", { number: viz.lcip.cultural_anchors.artform_funded['rows'][0]['Music'] } %}{% endcomp %} + {% endcomp %} + + {% comp "dashboard.pane" %} +

Theatre

+ {% comp "dashboard.big_number", { number: viz.lcip.cultural_anchors.artform_funded['rows'][0]['Theatre'] } %}{% endcomp %} + {% endcomp %} + +{% endcomp %} diff --git a/src/lcip/cultural-anchors/funding-invested/index.njk b/src/lcip/cultural-anchors/funding-invested/index.njk index d3dd25c..239ba0b 100644 --- a/src/lcip/cultural-anchors/funding-invested/index.njk +++ b/src/lcip/cultural-anchors/funding-invested/index.njk @@ -6,17 +6,17 @@ title: Cultural Anchors - Funding Invested {% comp "dashboard.pane" %}

Funding invested from Leeds City Council

- {% comp "dashboard.big_number", { number: viz.lcip.cultural_anchors.funding['rows'][0]['Funding invested from Leeds City Council'], prefix: '£' } %}{% endcomp %} + {% comp "dashboard.big_number", { number: viz.lcip.cultural_anchors.funding['rows'][0]['Funding invested from Leeds City Council'], prefix: '£', fontsize:'2.5rem' } %}{% endcomp %} {% endcomp %} {% comp "dashboard.pane" %}

Funding invested from others

- {% comp "dashboard.big_number", { number: viz.lcip.cultural_anchors.funding['rows'][0]['Funding invested from others'], prefix: '£' } %}{% endcomp %} + {% comp "dashboard.big_number", { number: viz.lcip.cultural_anchors.funding['rows'][0]['Funding invested from others'], prefix: '£', fontsize:'2.5rem' } %}{% endcomp %} {% endcomp %} {% comp "dashboard.pane" %}

Cumulative
spend

- {% comp "dashboard.big_number", { number: (viz.lcip.cultural_anchors.funding['rows'][0]['Funding invested from Leeds City Council']) + (viz.lcip.cultural_anchors.funding['rows'][0]['Funding invested from others']), prefix: '£' } %}{% endcomp %} + {% comp "dashboard.big_number", { number: (viz.lcip.cultural_anchors.funding['rows'][0]['Funding invested from Leeds City Council']) + (viz.lcip.cultural_anchors.funding['rows'][0]['Funding invested from others']), prefix: '£', fontsize:'2.5rem' } %}{% endcomp %} {% endcomp %} {% endcomp %} \ No newline at end of file diff --git a/src/lcip/cultural-anchors/index.njk b/src/lcip/cultural-anchors/index.njk index 6702bae..55cdf98 100644 --- a/src/lcip/cultural-anchors/index.njk +++ b/src/lcip/cultural-anchors/index.njk @@ -9,14 +9,6 @@ Cultural Anchors includes some of the largest, building based, cultural organisa {% comp "dashboard.panels", { columns: 4 } %} - {% comp "dashboard.pane", { link: "/lcip/cultural-anchors/advice-sessions" } %} -

Advice sessions offered

- {% comp "dashboard.big_number", { number: viz.lcip.cultural_anchors.funding_advice_sessions['rows'][0]['No. of funding surgeries offered'] } %} - {% endcomp %} -

Advice Sessions

- {% endcomp %} - - {% comp "dashboard.pane", { link: "/lcip/cultural-anchors/applications/" } %}

Applications received

{% comp "dashboard.big_number", { number: viz.lcip.cultural_anchors.applications_received['rows'][0]['from an organisation'] } %} @@ -24,6 +16,14 @@ Cultural Anchors includes some of the largest, building based, cultural organisa

Applications

{% endcomp %} + {% comp "dashboard.pane", { link: "/lcip/cultural-anchors/artforms/", columns: 1} %} +

Funded
artforms

+ {% comp "dashboard.big_number", { + number: viz.lcip.cultural_anchors.artform_funded['rows'][0]['total'] } %} + {% endcomp %} +

Artforms

+ {% endcomp %} + {% comp "dashboard.pane", { link: "/lcip/cultural-anchors/applications/", columns: 2, rows: 2 } %}

Funding awarded by ward

{% comp "dashboard.embedded_figure" %} @@ -45,18 +45,6 @@ Cultural Anchors includes some of the largest, building based, cultural organisa {% endcomp %} {% endcomp %} - - - {% comp "dashboard.pane", { link: "/lcip/cultural-anchors/results/", columns: 2 } %} -

Funding
awarded

- {% comp "dashboard.big_number", { - prefix: '£', - number: (viz.lcip.cultural_anchors.results['rows'][0]['Total amount awarded to organisations (£)']), - fontsize: '2.5rem'} %} - {% endcomp %} -

Programme Results

- {% endcomp %} - {% comp "dashboard.pane", { link: "/lcip/cultural-anchors/funding-invested/", columns: 2 } %}

Funding invested

{% comp "dashboard.big_number", { @@ -67,28 +55,42 @@ Cultural Anchors includes some of the largest, building based, cultural organisa

Investment

{% endcomp %} + {% comp "dashboard.pane", { link: "/lcip/cultural-anchors/results/", columns: 2} %} +

Funding
awarded

+ {% comp "dashboard.big_number", { + prefix: '£', + number: (viz.lcip.cultural_anchors.results['rows'][0]['Total amount awarded to organisations (£)']), + fontsize: '2.5rem'} %} + {% endcomp %} +

Programme Results

+ {% endcomp %} - {% comp "dashboard.pane", { link: "/lcip/cultural-anchors/reach/", columns: 2 } %} -

Audience

+ {% comp "dashboard.pane", { link: "/lcip/cultural-anchors/reach/", columns: 2 } %} +

Audience

{% comp "dashboard.big_number", { number: (viz.lcip.cultural_anchors.reach['rows'][0]['Audience - in person']) + (viz.lcip.cultural_anchors.reach['rows'][0]['Broadcast/online audiences']) + (viz.lcip.cultural_anchors.reach['rows'][0]['Participants - in person']), fontsize: '2.5rem' } %} {% endcomp %}

Reach

{% endcomp %} - {% comp "dashboard.pane", { link: "/lcip/cultural-anchors/workforce/", columns: 2 } %} + {% endcomp %} + +{% comp "dashboard.panels", { columns: 2 } %} + + {% comp "dashboard.pane", { link: "/lcip/cultural-anchors/workforce/" } %}

Workforce

{% comp "dashboard.big_number", { - number: (viz.lcip.cultural_anchors.contribution_to_workforce['rows'][0]['Artists/Creatives']) + (viz.lcip.cultural_anchors.contribution_to_workforce['rows'][0]['Volunteers']) - } %} + number: (viz.lcip.cultural_anchors.contribution_to_workforce['rows'][0]['Artists/Creatives']) + (viz.lcip.cultural_anchors.contribution_to_workforce['rows'][0]['Volunteers']), + fontsize: '2.5rem'} %} {% endcomp %}

Workforce

{% endcomp %} - {% comp "dashboard.pane", { link: "/lcip/cultural-anchors/project-outputs/", columns: 2} %} -

Project outcomes

+ {% comp "dashboard.pane", { link: "/lcip/cultural-anchors/project-outputs/", columns: 1} %} +

Project outputs

{% comp "dashboard.big_number", { - number: viz.lcip.cultural_anchors.project_outputs_funded['rows'][0]['Performances or exhibition days'] } %} + number: viz.lcip.cultural_anchors.project_outputs_funded['rows'][0]['Performances or exhibition days'], + fontsize: '2.5rem' } %} {% endcomp %}

Project Outputs

{% endcomp %} diff --git a/src/lcip/cultural-anchors/project-outputs/index.njk b/src/lcip/cultural-anchors/project-outputs/index.njk index e363345..1498d64 100644 --- a/src/lcip/cultural-anchors/project-outputs/index.njk +++ b/src/lcip/cultural-anchors/project-outputs/index.njk @@ -17,25 +17,7 @@ title: Cultural Anchors - Project Outputs {% endcomp %} {% endcomp %} - {% comp "dashboard.pane" %} -

Learning or participation sessions

- {% comp "dashboard.big_number", { number: viz.lcip.cultural_anchors.project_outputs_applied['rows'][0]['Learning or participation sessions'] } %} - {% endcomp %} - {% endcomp %} - - {% comp "dashboard.pane" %} -

New cultural activities/products

- {% comp "dashboard.big_number", { number: viz.lcip.cultural_anchors.project_outputs_applied['rows'][0]['New cultural activities/products'] } %} - {% endcomp %} - {% endcomp %} - - {% comp "dashboard.pane" %} -

Performances or exhibition days

- {% comp "dashboard.big_number", { number: viz.lcip.cultural_anchors.project_outputs_applied['rows'][0]['Performances or exhibition days'] } %} - {% endcomp %} - {% endcomp %} - - {% comp "dashboard.pane" %} + {% comp "dashboard.pane" %}

Training
opportunities

{% comp "dashboard.big_number", { number: viz.lcip.cultural_anchors.project_outputs_applied['rows'][0]['Training opportunities'] } %} {% endcomp %} diff --git a/src/lcip/cultural-anchors/reach/index.njk b/src/lcip/cultural-anchors/reach/index.njk index 5010da1..146ca73 100644 --- a/src/lcip/cultural-anchors/reach/index.njk +++ b/src/lcip/cultural-anchors/reach/index.njk @@ -6,19 +6,19 @@ title: Cultural Anchors - Reach {% comp "dashboard.pane", { link: "/lcip/cultural_anchors/advice-sessions" } %}

Audience - in person

- {% comp "dashboard.big_number", { number: viz.lcip.cultural_anchors.reach['rows'][0]['Audience - in person'] } %} + {% comp "dashboard.big_number", { number: viz.lcip.cultural_anchors.reach['rows'][0]['Audience - in person'], fontsize: '2.5rem'} %} {% endcomp %} {% endcomp %} {% comp "dashboard.pane", { link: "/lcip/cultural_anchors/advice-sessions" } %}

Broadcast/online audiences

- {% comp "dashboard.big_number", { number: viz.lcip.cultural_anchors.reach['rows'][0]['Broadcast/online audiences'] } %} + {% comp "dashboard.big_number", { number: viz.lcip.cultural_anchors.reach['rows'][0]['Broadcast/online audiences'], fontsize: '2.5rem' } %} {% endcomp %} {% endcomp %} {% comp "dashboard.pane", { link: "/lcip/cultural_anchors/advice-sessions" } %}

Participants - in person

- {% comp "dashboard.big_number", { number: viz.lcip.cultural_anchors.reach['rows'][0]['Participants - in person'] } %} + {% comp "dashboard.big_number", { number: viz.lcip.cultural_anchors.reach['rows'][0]['Participants - in person'], fontsize: '2.5rem' } %} {% endcomp %} {% endcomp %} diff --git a/src/lcip/cultural-anchors/results/index.njk b/src/lcip/cultural-anchors/results/index.njk index eee328d..ed3f0d9 100644 --- a/src/lcip/cultural-anchors/results/index.njk +++ b/src/lcip/cultural-anchors/results/index.njk @@ -16,32 +16,7 @@ title: Cultural Anchors - Results {% endcomp %} -{% comp "dashboard.panels", { columns: 3 } %} - - - {% comp "dashboard.pane" %} -

Unsuccessful artist applications

- {% comp "dashboard.big_number", { number: viz.lcip.cultural_anchors.results['rows'][0]['No. of unsucessful artist applications'] } %}{% endcomp %} - {% endcomp %} - - {% comp "dashboard.pane" %} -

Unsuccessful organisation applications

- {% comp "dashboard.big_number", { number: viz.lcip.cultural_anchors.results['rows'][0]['No. of unsucessful organisations applications'] } %}{% endcomp %} - {% endcomp %} - - {% comp "dashboard.pane" %} -

Withdrawn by
applicant

- {% comp "dashboard.big_number", { number: viz.lcip.cultural_anchors.results['rows'][0]['No. of withdrawn by applicant'] } %}{% endcomp %} - {% endcomp %} - -{% endcomp %} - -{% comp "dashboard.panels", { columns: 2 } %} - - {% comp "dashboard.pane" %} -

Awarded to individual artists

- {% comp "dashboard.big_number", { prefix: '£', number: viz.lcip.cultural_anchors.results['rows'][0]['Total amount awarded to individual artists'], fontsize: '3em' } %}{% endcomp %} - {% endcomp %} +{% comp "dashboard.panels", { columns: 1 } %} {% comp "dashboard.pane" %}

Awarded to organisations

diff --git a/src/lcip/grow_project/artforms/index.njk b/src/lcip/grow_project/artforms/index.njk new file mode 100644 index 0000000..03477d3 --- /dev/null +++ b/src/lcip/grow_project/artforms/index.njk @@ -0,0 +1,100 @@ +--- +title: Grow Project - Artforms +--- + +{% comp "dashboard.panels", { columns: 1 } %} + + {% comp "dashboard.pane", { bg: '#004563', color: '#ffffff' } %} +

Applied

+ {% endcomp %} +{% endcomp %} + +{% comp "dashboard.panels", { columns: 3 } %} + + {% comp "dashboard.pane" %} +

Combined Arts

+ {% comp "dashboard.big_number", { number: viz.lcip.grow_project.artform_applied['rows'][0]['Combined Arts']} %}{% endcomp %} + {% endcomp %} + + {% comp "dashboard.pane" %} +

Crafts

+ {% comp "dashboard.big_number", { number: viz.lcip.grow_project.artform_applied['rows'][0]['Crafts'] } %}{% endcomp %} + {% endcomp %} + + {% comp "dashboard.pane" %} +

Dance

+ {% comp "dashboard.big_number", { number: viz.lcip.grow_project.artform_applied['rows'][0]['Dance'] } %}{% endcomp %} + {% endcomp %} + + {% comp "dashboard.pane" %} +

Festival/Carnival

+ {% comp "dashboard.big_number", { number: viz.lcip.grow_project.artform_applied['rows'][0]['Festival/Carnival']} %}{% endcomp %} + {% endcomp %} + + {% comp "dashboard.pane" %} +

Literature/Poetry

+ {% comp "dashboard.big_number", { number: viz.lcip.grow_project.artform_applied['rows'][0]['Literature / Poetry / Spoken Word'] } %}{% endcomp %} + {% endcomp %} + + {% comp "dashboard.pane" %} +

Music

+ {% comp "dashboard.big_number", { number: viz.lcip.grow_project.artform_applied['rows'][0]['Music'] } %}{% endcomp %} + {% endcomp %} + + {% comp "dashboard.pane" %} +

Theatre

+ {% comp "dashboard.big_number", { number: viz.lcip.grow_project.artform_applied['rows'][0]['Theatre']} %}{% endcomp %} + {% endcomp %} + + {% comp "dashboard.pane" %} +

Photography

+ {% comp "dashboard.big_number", { number: viz.lcip.grow_project.artform_applied['rows'][0]['Photography'] } %}{% endcomp %} + {% endcomp %} + + {% comp "dashboard.pane" %} +

Visual Art

+ {% comp "dashboard.big_number", { number: viz.lcip.grow_project.artform_applied['rows'][0]['Visual Art'] } %}{% endcomp %} + {% endcomp %} + +{% endcomp %} + +{% comp "dashboard.panels", { columns: 1 } %} + + {% comp "dashboard.pane", { bg: '#004563', color: '#ffffff' } %} +

Funded

+ {% endcomp %} +{% endcomp %} + +{% comp "dashboard.panels", { columns: 3 } %} + + {% comp "dashboard.pane" %} +

Combined Arts

+ {% comp "dashboard.big_number", { number: viz.lcip.grow_project.artform_funded['rows'][0]['Combined Arts']} %}{% endcomp %} + {% endcomp %} + + {% comp "dashboard.pane" %} +

Dance

+ {% comp "dashboard.big_number", { number: viz.lcip.grow_project.artform_funded['rows'][0]['Dance'] } %}{% endcomp %} + {% endcomp %} + + {% comp "dashboard.pane" %} +

Literature/Poetry

+ {% comp "dashboard.big_number", { number: viz.lcip.grow_project.artform_funded['rows'][0]['Literature / Poetry / Spoken Word'] } %}{% endcomp %} + {% endcomp %} + + {% comp "dashboard.pane" %} +

Music

+ {% comp "dashboard.big_number", { number: viz.lcip.grow_project.artform_funded['rows'][0]['Music'] } %}{% endcomp %} + {% endcomp %} + + {% comp "dashboard.pane" %} +

Theatre

+ {% comp "dashboard.big_number", { number: viz.lcip.grow_project.artform_funded['rows'][0]['Theatre']} %}{% endcomp %} + {% endcomp %} + + {% comp "dashboard.pane" %} +

Visual Art

+ {% comp "dashboard.big_number", { number: viz.lcip.grow_project.artform_funded['rows'][0]['Visual Art'] } %}{% endcomp %} + {% endcomp %} + +{% endcomp %} diff --git a/src/lcip/grow_project/funding-invested/index.njk b/src/lcip/grow_project/funding-invested/index.njk index 1ed3682..3dae00f 100644 --- a/src/lcip/grow_project/funding-invested/index.njk +++ b/src/lcip/grow_project/funding-invested/index.njk @@ -6,17 +6,17 @@ title: Grow - Project - Funding Invested {% comp "dashboard.pane" %}

Funding invested from Leeds City Council

- {% comp "dashboard.big_number", { number: viz.lcip.grow_project.funding['rows'][0]['Funding invested from Leeds City Council'], prefix: '£' } %}{% endcomp %} + {% comp "dashboard.big_number", { number: viz.lcip.grow_project.funding['rows'][0]['Funding invested from Leeds City Council'], prefix: '£', fontsize:'2.5rem' } %}{% endcomp %} {% endcomp %} {% comp "dashboard.pane" %}

Funding invested from others

- {% comp "dashboard.big_number", { number: viz.lcip.grow_project.funding['rows'][0]['Funding invested from others'], prefix: '£' } %}{% endcomp %} + {% comp "dashboard.big_number", { number: viz.lcip.grow_project.funding['rows'][0]['Funding invested from others'], prefix: '£', fontsize:'2.5rem' } %}{% endcomp %} {% endcomp %} {% comp "dashboard.pane" %}

Cumulative
spend

- {% comp "dashboard.big_number", { number: (viz.lcip.grow_project.funding['rows'][0]['Funding invested from Leeds City Council']) + (viz.lcip.grow_project.funding['rows'][0]['Funding invested from others']), prefix: '£' } %}{% endcomp %} + {% comp "dashboard.big_number", { number: (viz.lcip.grow_project.funding['rows'][0]['Funding invested from Leeds City Council']) + (viz.lcip.grow_project.funding['rows'][0]['Funding invested from others']), prefix: '£', fontsize:'2.5rem'} %}{% endcomp %} {% endcomp %} {% endcomp %} \ No newline at end of file diff --git a/src/lcip/grow_project/index.njk b/src/lcip/grow_project/index.njk index 811e392..ff37c0f 100644 --- a/src/lcip/grow_project/index.njk +++ b/src/lcip/grow_project/index.njk @@ -8,11 +8,12 @@ Grow: Project – provides larger grants for one-off larger scale and artistical

- {% comp "dashboard.panels", { columns: 4 } %} + +{% comp "dashboard.panels", { columns: 4 } %} {% comp "dashboard.pane", { link: "/lcip/grow_project/advice-sessions" } %}

Advice sessions offered

- {% comp "dashboard.big_number", { number: viz.lcip.grow_project.funding_advice_sessions['rows'][0]['No. of funding surgeries offered'] } %} + {% comp "dashboard.big_number", { number: viz.lcip.grow_project.funding_advice_sessions['rows'][0]['No. of funding surgeries offered'], fontsize: '2.75rem' } %} {% endcomp %}

Advice Sessions

{% endcomp %} @@ -20,7 +21,7 @@ Grow: Project – provides larger grants for one-off larger scale and artistical {% comp "dashboard.pane", { link: "/lcip/grow_project/applications/" } %}

Applications received

- {% comp "dashboard.big_number", { number: viz.lcip.grow_project.applications_received['rows'][0]['No. of eligible applications'] } %} + {% comp "dashboard.big_number", { number: viz.lcip.grow_project.applications_received['rows'][0]['No. of eligible applications'], fontsize: '2.75rem' } %} {% endcomp %}

Applications

{% endcomp %} @@ -47,57 +48,71 @@ Grow: Project – provides larger grants for one-off larger scale and artistical {% endcomp %} {% comp "dashboard.pane", { link: "/lcip/grow_project/results/" } %} -

Funded applications

+

Funded
applications

{% comp "dashboard.big_number", { - number: (viz.lcip.grow_project.results['rows'][0]['No. of funded individual artists']) + (viz.lcip.grow_project.results['rows'][0]['No. of funded organisations']), - fontsize: '2.5rem'} %} + number: viz.lcip.grow_project.results['rows'][0]['No. of funded organisations'] + viz.lcip.grow_project.results['rows'][0]['No. of funded individual artists'], fontsize: '2.75rem' + } %} {% endcomp %}

Programme Results

{% endcomp %} + {% comp "dashboard.pane", { link: "/lcip/grow_project/funding-invested/" } %} +

Funding
invested

+ {% comp "dashboard.big_number", { number: viz.lcip.grow_project.funding['rows'][0]['total'], fontsize: '2.75rem'} %}{% endcomp %} +

Investment

+ {% endcomp %} + {% endcomp %} - {% comp "dashboard.pane", { link: "/lcip/grow_project/results/" } %} -

Funding awarded

+{% comp "dashboard.panels", { columns: 3 } %} + + {% comp "dashboard.pane", { link: "/lcip/grow_project/project-outputs/" } %} +

Project
Outputs

{% comp "dashboard.big_number", { - prefix: '£', - number: (viz.lcip.grow_project.results['rows'][0]['Total amount awarded to organisations (£)']), - fontsize: '2.5rem'} %} + number: viz.lcip.grow_project.project_outputs_funded['rows'][0]['total'], fontsize: '2.75rem' } %} {% endcomp %} -

Programme Results

+

Project Outputs

{% endcomp %} - {% comp "dashboard.pane", { link: "/lcip/grow_project/funding-invested/" } %} -

Funding invested

+ + {% comp "dashboard.pane", { link: "/lcip/grow_project/artforms/" } %} +

Funded
Artforms

{% comp "dashboard.big_number", { - number: (viz.lcip.grow_project.funding['rows'][0]['Funding invested from Leeds City Council']) + (viz.lcip.grow_project.funding['rows'][0]['Funding invested from others']), - prefix: '£', - fontsize: '2.5rem' } %} + number: (viz.lcip.grow_project.artform_funded['rows'][0]['total']), + fontsize: '2.75rem'} %} {% endcomp %} -

Investment

+

Artforms

{% endcomp %} - {% comp "dashboard.pane", { link: "/lcip/grow_project/workforce/" } %} -

Workforce

+ + {% comp "dashboard.pane", { link: "/lcip/grow_project/target-groups/" } %} +

Target
Groups

{% comp "dashboard.big_number", { - number: (viz.lcip.grow_project.contribution_to_workforce['rows'][0]['Artists/Creatives']) + (viz.lcip.grow_project.contribution_to_workforce['rows'][0]['Volunteers']), fontsize: '2.5rem'} %} + number: (viz.lcip.grow_project.target_groups_funded['rows'][0]['total']), + fontsize: '2.75rem'} %} {% endcomp %} -

Workforce

+

Target Groups

{% endcomp %} + {% endcomp %} + +{% comp "dashboard.panels", { columns: 2 } %} + {% comp "dashboard.pane", { link: "/lcip/grow_project/reach/" } %}

Audience

{% comp "dashboard.big_number", { - number: (viz.lcip.grow_project.reach['rows'][0]['Audience - in person']) + (viz.lcip.grow_project.reach['rows'][0]['Broadcast/online audiences']) + (viz.lcip.grow_project.reach['rows'][0]['Participants - in person']), fontsize: '2.5rem' } %} + number: (viz.lcip.grow_project.reach['rows'][0]['total']), fontsize: '2.75rem' } %} {% endcomp %}

Reach

{% endcomp %} - {% comp "dashboard.pane", { link: "/lcip/grow_project/project-outputs/" } %} -

Project outcomes

+ {% comp "dashboard.pane", { link: "/lcip/grow_project/workforce/" } %} +

Workforce

{% comp "dashboard.big_number", { - number: viz.lcip.grow_project.project_outputs_funded['rows'][0]['Performances or exhibition days'], fontsize: '2.5rem' } %} + number: (viz.lcip.grow_project.contribution_to_workforce['rows'][0]['total']), fontsize: '2.75rem' + } %} {% endcomp %} -

Project Outputs

+

Workforce

{% endcomp %} -{% endcomp %} + +{% endcomp %} \ No newline at end of file diff --git a/src/lcip/grow_project/reach/index.njk b/src/lcip/grow_project/reach/index.njk index 40ae352..a8634d8 100644 --- a/src/lcip/grow_project/reach/index.njk +++ b/src/lcip/grow_project/reach/index.njk @@ -6,19 +6,19 @@ title: Grow - Project - Reach {% comp "dashboard.pane" %}

Audience - in person

- {% comp "dashboard.big_number", { number: viz.lcip.grow_project.reach['rows'][0]['Audience - in person'] } %} + {% comp "dashboard.big_number", { number: viz.lcip.grow_project.reach['rows'][0]['Audience - in person'], fontsize: '2.5rem' } %} {% endcomp %} {% endcomp %} {% comp "dashboard.pane" %}

Broadcast/online audiences

- {% comp "dashboard.big_number", { number: viz.lcip.grow_project.reach['rows'][0]['Broadcast/online audiences'] } %} + {% comp "dashboard.big_number", { number: viz.lcip.grow_project.reach['rows'][0]['Broadcast/online audiences'], fontsize: '2.5rem' } %} {% endcomp %} {% endcomp %} {% comp "dashboard.pane" %}

Participants - in person

- {% comp "dashboard.big_number", { number: viz.lcip.grow_project.reach['rows'][0]['Participants - in person'] } %} + {% comp "dashboard.big_number", { number: viz.lcip.grow_project.reach['rows'][0]['Participants - in person'], fontsize: '2.5rem' } %} {% endcomp %} {% endcomp %} diff --git a/src/lcip/grow_revenue/artforms/index.njk b/src/lcip/grow_revenue/artforms/index.njk new file mode 100644 index 0000000..44c800e --- /dev/null +++ b/src/lcip/grow_revenue/artforms/index.njk @@ -0,0 +1,107 @@ +--- +title: Grow Revenue - Artforms +--- + +{% comp "dashboard.panels", { columns: 1 } %} + + {% comp "dashboard.pane", { bg: '#004563', color: '#ffffff' } %} +

Applied

+ {% endcomp %} +{% endcomp %} + +{% comp "dashboard.panels", { columns: 3 } %} + + {% comp "dashboard.pane" %} +

Combined Arts

+ {% comp "dashboard.big_number", { number: viz.lcip.grow_revenue.artform_applied['rows'][0]['Combined Arts']} %}{% endcomp %} + {% endcomp %} + + {% comp "dashboard.pane" %} +

Dance

+ {% comp "dashboard.big_number", { number: viz.lcip.grow_revenue.artform_applied['rows'][0]['Dance'] } %}{% endcomp %} + {% endcomp %} + + {% comp "dashboard.pane" %} +

Festival/Carnival

+ {% comp "dashboard.big_number", { number: viz.lcip.grow_revenue.artform_applied['rows'][0]['Festival/Carnival']} %}{% endcomp %} + {% endcomp %} + + {% comp "dashboard.pane" %} +

Film

+ {% comp "dashboard.big_number", { number: viz.lcip.grow_revenue.artform_applied['rows'][0]['Film']} %}{% endcomp %} + {% endcomp %} + + {% comp "dashboard.pane" %} +

Live Art

+ {% comp "dashboard.big_number", { number: viz.lcip.grow_revenue.artform_applied['rows'][0]['Live Art'] } %}{% endcomp %} + {% endcomp %} + + {% comp "dashboard.pane" %} +

Literature/Poetry

+ {% comp "dashboard.big_number", { number: viz.lcip.grow_revenue.artform_applied['rows'][0]['Literature / Poetry / Spoken Word'] } %}{% endcomp %} + {% endcomp %} + + {% comp "dashboard.pane" %} +

Music

+ {% comp "dashboard.big_number", { number: viz.lcip.grow_revenue.artform_applied['rows'][0]['Music'] } %}{% endcomp %} + {% endcomp %} + + {% comp "dashboard.pane" %} +

Theatre

+ {% comp "dashboard.big_number", { number: viz.lcip.grow_revenue.artform_applied['rows'][0]['Theatre']} %}{% endcomp %} + {% endcomp %} + + {% comp "dashboard.pane" %} +

Visual Art

+ {% comp "dashboard.big_number", { number: viz.lcip.grow_revenue.artform_applied['rows'][0]['Visual Art'] } %}{% endcomp %} + {% endcomp %} + +{% endcomp %} + +{% comp "dashboard.panels", { columns: 1 } %} + + {% comp "dashboard.pane", { bg: '#004563', color: '#ffffff' } %} +

Funded

+ {% endcomp %} +{% endcomp %} + +{% comp "dashboard.panels", { columns: 4 } %} + {% comp "dashboard.pane" %} +

Combined Arts

+ {% comp "dashboard.big_number", { number: viz.lcip.grow_revenue.artform_funded['rows'][0]['Combined Arts']} %}{% endcomp %} + {% endcomp %} + + {% comp "dashboard.pane" %} +

Dance

+ {% comp "dashboard.big_number", { number: viz.lcip.grow_revenue.artform_funded['rows'][0]['Dance'] } %}{% endcomp %} + {% endcomp %} + + {% comp "dashboard.pane" %} +

Live Art

+ {% comp "dashboard.big_number", { number: viz.lcip.grow_revenue.artform_funded['rows'][0]['Live Art'] } %}{% endcomp %} + {% endcomp %} + + {% comp "dashboard.pane" %} +

Literature/Poetry

+ {% comp "dashboard.big_number", { number: viz.lcip.grow_revenue.artform_funded['rows'][0]['Literature / Poetry / Spoken Word'] } %}{% endcomp %} + {% endcomp %} +{% endcomp %} + +{% comp "dashboard.panels", { columns: 3 } %} + + {% comp "dashboard.pane" %} +

Music

+ {% comp "dashboard.big_number", { number: viz.lcip.grow_revenue.artform_funded['rows'][0]['Music'] } %}{% endcomp %} + {% endcomp %} + + {% comp "dashboard.pane" %} +

Theatre

+ {% comp "dashboard.big_number", { number: viz.lcip.grow_revenue.artform_funded['rows'][0]['Theatre']} %}{% endcomp %} + {% endcomp %} + + {% comp "dashboard.pane" %} +

Visual Art

+ {% comp "dashboard.big_number", { number: viz.lcip.grow_revenue.artform_funded['rows'][0]['Visual Art'] } %}{% endcomp %} + {% endcomp %} + +{% endcomp %} diff --git a/src/lcip/grow_revenue/funding-invested/index.njk b/src/lcip/grow_revenue/funding-invested/index.njk index f9bb52b..06fd073 100644 --- a/src/lcip/grow_revenue/funding-invested/index.njk +++ b/src/lcip/grow_revenue/funding-invested/index.njk @@ -6,17 +6,17 @@ title: Grow - Revenue - Funding Invested {% comp "dashboard.pane" %}

Funding invested from Leeds City Council

- {% comp "dashboard.big_number", { number: viz.lcip.grow_revenue.funding['rows'][0]['Funding invested from Leeds City Council'], prefix: '£' } %}{% endcomp %} + {% comp "dashboard.big_number", { number: viz.lcip.grow_revenue.funding['rows'][0]['Funding invested from Leeds City Council'], prefix: '£', fontsize:'2.5rem' } %}{% endcomp %} {% endcomp %} {% comp "dashboard.pane" %}

Funding invested from others

- {% comp "dashboard.big_number", { number: viz.lcip.grow_revenue.funding['rows'][0]['Funding invested from others'], prefix: '£' } %}{% endcomp %} + {% comp "dashboard.big_number", { number: viz.lcip.grow_revenue.funding['rows'][0]['Funding invested from others'], prefix: '£', fontsize:'2.5rem' } %}{% endcomp %} {% endcomp %} {% comp "dashboard.pane" %}

Cumulative
spend

- {% comp "dashboard.big_number", { number: (viz.lcip.grow_revenue.funding['rows'][0]['Funding invested from Leeds City Council']) + (viz.lcip.grow_revenue.funding['rows'][0]['Funding invested from others']), prefix: '£' } %}{% endcomp %} + {% comp "dashboard.big_number", { number: (viz.lcip.grow_revenue.funding['rows'][0]['Funding invested from Leeds City Council']) + (viz.lcip.grow_revenue.funding['rows'][0]['Funding invested from others']), prefix: '£', fontsize:'2.5rem' } %}{% endcomp %} {% endcomp %} {% endcomp %} \ No newline at end of file diff --git a/src/lcip/grow_revenue/index.njk b/src/lcip/grow_revenue/index.njk index 939e39d..0450d56 100644 --- a/src/lcip/grow_revenue/index.njk +++ b/src/lcip/grow_revenue/index.njk @@ -12,15 +12,15 @@ Grow: Revenue – provides revenue grants to support organisations working year- {% comp "dashboard.pane", { link: "/lcip/grow_revenue/advice-sessions" } %}

Advice sessions offered

- {% comp "dashboard.big_number", { number: viz.lcip.grow_revenue.funding_advice_sessions['rows'][0]['No. of funding surgeries offered'],fontsize: '2.75rem' } %} - {% endcomp %} + {% comp "dashboard.big_number", { number: viz.lcip.grow_revenue.funding_advice_sessions['rows'][0]['No. of funding surgeries offered'], fontsize: '2.75rem' } %} + {% endcomp %}

Advice Sessions

{% endcomp %} {% comp "dashboard.pane", { link: "/lcip/grow_revenue/applications/" } %}

Applications received

- {% comp "dashboard.big_number", { number: viz.lcip.grow_revenue.applications_received['rows'][0]['No. of eligible applications'],fontsize: '2.75rem' } %} + {% comp "dashboard.big_number", { number: viz.lcip.grow_revenue.applications_received['rows'][0]['No. of eligible applications'], fontsize: '2.75rem' } %} {% endcomp %}

Applications

{% endcomp %} @@ -28,7 +28,7 @@ Grow: Revenue – provides revenue grants to support organisations working year- {% comp "dashboard.pane", { link: "/lcip/grow_revenue/applications/", columns: 2, rows: 2 } %}

Funding awarded by ward

{% comp "dashboard.embedded_figure" %} -

This map represents the number of applications awarded funding from each Leeds ward.

+

This map represents the number of applicants awarded funding from each Leeds ward.

{{ comp.oi.map.hex_cartogram({ config: { hexjson: hex.wards_leeds, @@ -46,59 +46,72 @@ Grow: Revenue – provides revenue grants to support organisations working year- {% endcomp %} {% endcomp %} - {% comp "dashboard.pane", { link: "/lcip/grow_revenue/results/", columns: 1 } %} -

Funded applications

+ {% comp "dashboard.pane", { link: "/lcip/grow_revenue/results/" } %} +

Funded
applications

{% comp "dashboard.big_number", { - number: (viz.lcip.grow_revenue.results['rows'][0]['No. of funded individual artists']) + (viz.lcip.grow_revenue.results['rows'][0]['No. of funded organisations']), - fontsize: '2.75rem'} %} + number: viz.lcip.grow_revenue.results['rows'][0]['No. of funded organisations'] + viz.lcip.grow_revenue.results['rows'][0]['No. of funded individual artists'], fontsize: '2.75rem' + } %} {% endcomp %}

Programme Results

{% endcomp %} - {% comp "dashboard.pane", { link: "/lcip/grow_revenue/results/", columns: 1 } %} -

Funding awarded

+ {% comp "dashboard.pane", { link: "/lcip/grow_revenue/funding-invested/" } %} +

Funding
invested

+ {% comp "dashboard.big_number", { number: viz.lcip.grow_revenue.funding['rows'][0]['total'], fontsize: '2.75rem'} %}{% endcomp %} +

Investment

+ {% endcomp %} + {% endcomp %} + +{% comp "dashboard.panels", { columns: 3 } %} + + {% comp "dashboard.pane", { link: "/lcip/grow_revenue/project-outputs/" } %} +

Project
Outputs

+ {% comp "dashboard.big_number", { + number: viz.lcip.grow_revenue.project_outputs_funded['rows'][0]['total'], fontsize: '2.75rem' } %} + {% endcomp %} +

Project Outputs

+ {% endcomp %} + + + {% comp "dashboard.pane", { link: "/lcip/grow_revenue/artforms/" } %} +

Funded
Artforms

{% comp "dashboard.big_number", { - prefix: '£', - number: (viz.lcip.grow_revenue.results['rows'][0]['Total amount awarded to organisations (£)']), + number: (viz.lcip.grow_revenue.artform_funded['rows'][0]['total']), fontsize: '2.75rem'} %} {% endcomp %} -

Programme Results

+

Artforms

{% endcomp %} - {% comp "dashboard.pane", { link: "/lcip/grow_revenue/funding-invested/", columns: 2 } %} -

Funding invested

+ + {% comp "dashboard.pane", { link: "/lcip/grow_revenue/target-groups/" } %} +

Target
Groups

{% comp "dashboard.big_number", { - number: (viz.lcip.grow_revenue.funding['rows'][0]['Funding invested from Leeds City Council']) + (viz.lcip.grow_revenue.funding['rows'][0]['Funding invested from others']), - prefix: '£', - fontsize: '2.75rem' } %} + number: (viz.lcip.grow_revenue.target_groups_funded['rows'][0]['total']), + fontsize: '2.75rem'} %} {% endcomp %} -

Investment

+

Target Groups

{% endcomp %} + {% endcomp %} + +{% comp "dashboard.panels", { columns: 2 } %} - {% comp "dashboard.pane", { link: "/lcip/grow_revenue/reach/", columns: 2 } %} + {% comp "dashboard.pane", { link: "/lcip/grow_revenue/reach/" } %}

Audience

{% comp "dashboard.big_number", { - number: (viz.lcip.grow_revenue.reach['rows'][0]['Audience - in person']) + (viz.lcip.grow_revenue.reach['rows'][0]['Broadcast/online audiences']) + (viz.lcip.grow_revenue.reach['rows'][0]['Participants - in person']), fontsize: '2.75rem' } %} + number: (viz.lcip.grow_revenue.reach['rows'][0]['total']), fontsize: '2.75rem' } %} {% endcomp %}

Reach

{% endcomp %} - {% comp "dashboard.pane", { link: "/lcip/grow_revenue/workforce/", columns: 2 } %} + {% comp "dashboard.pane", { link: "/lcip/grow_revenue/workforce/" } %}

Workforce

{% comp "dashboard.big_number", { - number: (viz.lcip.grow_revenue.contribution_to_workforce['rows'][0]['Artists/Creatives']) + (viz.lcip.grow_revenue.contribution_to_workforce['rows'][0]['Volunteers']),fontsize: '2.75rem' + number: (viz.lcip.grow_revenue.contribution_to_workforce['rows'][0]['total']), fontsize: '2.75rem' } %} {% endcomp %}

Workforce

{% endcomp %} - {% comp "dashboard.pane", { link: "/lcip/grow_revenue/project-outputs/", columns: 2} %} -

Project outcomes

- {% comp "dashboard.big_number", { - number: viz.lcip.grow_revenue.project_outputs_funded['rows'][0]['Performances or exhibition days'],fontsize: '2.75rem' } %} - {% endcomp %} -

Project Outputs

- {% endcomp %} -{% endcomp %} +{% endcomp %} \ No newline at end of file diff --git a/src/lcip/grow_revenue/reach/index.njk b/src/lcip/grow_revenue/reach/index.njk index 40a6bc7..687d673 100644 --- a/src/lcip/grow_revenue/reach/index.njk +++ b/src/lcip/grow_revenue/reach/index.njk @@ -6,19 +6,19 @@ title: Grow - Revenue - Reach {% comp "dashboard.pane", { link: "/lcip/grow_revenue/advice-sessions" } %}

Audience - in person

- {% comp "dashboard.big_number", { number: viz.lcip.grow_revenue.reach['rows'][0]['Audience - in person'] } %} + {% comp "dashboard.big_number", { number: viz.lcip.grow_revenue.reach['rows'][0]['Audience - in person'], fontsize: '2.5rem' } %} {% endcomp %} {% endcomp %} {% comp "dashboard.pane", { link: "/lcip/grow_revenue/advice-sessions" } %}

Broadcast/online audiences

- {% comp "dashboard.big_number", { number: viz.lcip.grow_revenue.reach['rows'][0]['Broadcast/online audiences'] } %} + {% comp "dashboard.big_number", { number: viz.lcip.grow_revenue.reach['rows'][0]['Broadcast/online audiences'], fontsize: '2.5rem' } %} {% endcomp %} {% endcomp %} {% comp "dashboard.pane", { link: "/lcip/grow_revenue/advice-sessions" } %}

Participants - in person

- {% comp "dashboard.big_number", { number: viz.lcip.grow_revenue.reach['rows'][0]['Participants - in person'] } %} + {% comp "dashboard.big_number", { number: viz.lcip.grow_revenue.reach['rows'][0]['Participants - in person'], fontsize: '2.5rem' } %} {% endcomp %} {% endcomp %} diff --git a/src/lcip/inspire/artforms/index.njk b/src/lcip/inspire/artforms/index.njk new file mode 100644 index 0000000..a5d3002 --- /dev/null +++ b/src/lcip/inspire/artforms/index.njk @@ -0,0 +1,125 @@ +--- +title: Inspire - Artforms +--- + +{% comp "dashboard.panels", { columns: 1 } %} + + {% comp "dashboard.pane", { bg: '#004563', color: '#ffffff' } %} +

Applied

+ {% endcomp %} +{% endcomp %} + +{% comp "dashboard.panels", { columns: 4 } %} + + {% comp "dashboard.pane" %} +

Combined Arts

+ {% comp "dashboard.big_number", { number: viz.lcip.inspire.artform_applied['rows'][0]['Combined Arts']} %}{% endcomp %} + {% endcomp %} + + {% comp "dashboard.pane" %} +

Crafts

+ {% comp "dashboard.big_number", { number: viz.lcip.inspire.artform_applied['rows'][0]['Crafts']} %}{% endcomp %} + {% endcomp %} + + {% comp "dashboard.pane" %} +

Dance

+ {% comp "dashboard.big_number", { number: viz.lcip.inspire.artform_applied['rows'][0]['Dance'] } %}{% endcomp %} + {% endcomp %} + + {% comp "dashboard.pane" %} +

Digital Media

+ {% comp "dashboard.big_number", { number: viz.lcip.inspire.artform_applied['rows'][0]['Digital Media'] } %}{% endcomp %} + {% endcomp %} + + {% comp "dashboard.pane" %} +

Festival/Carnival

+ {% comp "dashboard.big_number", { number: viz.lcip.inspire.artform_applied['rows'][0]['Festival/Carnival']} %}{% endcomp %} + {% endcomp %} + + {% comp "dashboard.pane" %} +

Film

+ {% comp "dashboard.big_number", { number: viz.lcip.inspire.artform_applied['rows'][0]['Film']} %}{% endcomp %} + {% endcomp %} + + {% comp "dashboard.pane" %} +

Literature / Poetry / Spoken Word

+ {% comp "dashboard.big_number", { number: viz.lcip.inspire.artform_applied['rows'][0]['Literature / Poetry / Spoken Word'] } %}{% endcomp %} + {% endcomp %} + + {% comp "dashboard.pane" %} +

Music

+ {% comp "dashboard.big_number", { number: viz.lcip.inspire.artform_applied['rows'][0]['Music'] } %}{% endcomp %} + {% endcomp %} +{% endcomp %} + +{% comp "dashboard.panels", { columns: 3 } %} + + + {% comp "dashboard.pane" %} +

Photography

+ {% comp "dashboard.big_number", { number: viz.lcip.inspire.artform_applied['rows'][0]['Photography'] } %}{% endcomp %} + {% endcomp %} + + {% comp "dashboard.pane" %} +

Theatre

+ {% comp "dashboard.big_number", { number: viz.lcip.inspire.artform_applied['rows'][0]['Theatre']} %}{% endcomp %} + {% endcomp %} + + {% comp "dashboard.pane" %} +

Visual Art

+ {% comp "dashboard.big_number", { number: viz.lcip.inspire.artform_applied['rows'][0]['Visual Art'] } %}{% endcomp %} + {% endcomp %} + +{% endcomp %} + +{% comp "dashboard.panels", { columns: 1 } %} + + {% comp "dashboard.pane", { bg: '#004563', color: '#ffffff' } %} +

Applied

+ {% endcomp %} +{% endcomp %} + +{% comp "dashboard.panels", { columns: 4 } %} + + + {% comp "dashboard.pane" %} +

Crafts

+ {% comp "dashboard.big_number", { number: viz.lcip.inspire.artform_funded['rows'][0]['Crafts']} %}{% endcomp %} + {% endcomp %} + + {% comp "dashboard.pane" %} +

Digital Media

+ {% comp "dashboard.big_number", { number: viz.lcip.inspire.artform_funded['rows'][0]['Digital Media'] } %}{% endcomp %} + {% endcomp %} + + {% comp "dashboard.pane" %} +

Festival/Carnival

+ {% comp "dashboard.big_number", { number: viz.lcip.inspire.artform_funded['rows'][0]['Festival/Carnival']} %}{% endcomp %} + {% endcomp %} + + {% comp "dashboard.pane" %} +

Film

+ {% comp "dashboard.big_number", { number: viz.lcip.inspire.artform_funded['rows'][0]['Film']} %}{% endcomp %} + {% endcomp %} + + {% comp "dashboard.pane" %} +

Music

+ {% comp "dashboard.big_number", { number: viz.lcip.inspire.artform_funded['rows'][0]['Music'] } %}{% endcomp %} + {% endcomp %} + + {% comp "dashboard.pane" %} +

Photography

+ {% comp "dashboard.big_number", { number: viz.lcip.inspire.artform_funded['rows'][0]['Photography'] } %}{% endcomp %} + {% endcomp %} + + {% comp "dashboard.pane" %} +

Theatre

+ {% comp "dashboard.big_number", { number: viz.lcip.inspire.artform_funded['rows'][0]['Theatre']} %}{% endcomp %} + {% endcomp %} + + {% comp "dashboard.pane" %} +

Visual Art

+ {% comp "dashboard.big_number", { number: viz.lcip.inspire.artform_funded['rows'][0]['Visual Art'] } %}{% endcomp %} + {% endcomp %} + +{% endcomp %} diff --git a/src/lcip/inspire/funding-invested/index.njk b/src/lcip/inspire/funding-invested/index.njk index 14c74b2..137c411 100644 --- a/src/lcip/inspire/funding-invested/index.njk +++ b/src/lcip/inspire/funding-invested/index.njk @@ -6,17 +6,17 @@ title: Inspire - Funding Invested {% comp "dashboard.pane" %}

Funding invested from Leeds City Council

- {% comp "dashboard.big_number", { number: viz.lcip.inspire.funding['rows'][0]['Funding invested from Leeds City Council'], prefix: '£' } %}{% endcomp %} + {% comp "dashboard.big_number", { number: viz.lcip.inspire.funding['rows'][0]['Funding invested from Leeds City Council'], prefix: '£', fontsize:'2.5rem' } %}{% endcomp %} {% endcomp %} {% comp "dashboard.pane" %}

Funding invested from others

- {% comp "dashboard.big_number", { number: viz.lcip.inspire.funding['rows'][0]['Funding invested from others'], prefix: '£' } %}{% endcomp %} + {% comp "dashboard.big_number", { number: viz.lcip.inspire.funding['rows'][0]['Funding invested from others'], prefix: '£', fontsize:'2.5rem' } %}{% endcomp %} {% endcomp %} {% comp "dashboard.pane" %}

Cumulative
spend

- {% comp "dashboard.big_number", { number: (viz.lcip.inspire.funding['rows'][0]['Funding invested from Leeds City Council']) + (viz.lcip.inspire.funding['rows'][0]['Funding invested from others']), prefix: '£' } %}{% endcomp %} + {% comp "dashboard.big_number", { number: (viz.lcip.inspire.funding['rows'][0]['Funding invested from Leeds City Council']) + (viz.lcip.inspire.funding['rows'][0]['Funding invested from others']), prefix: '£', fontsize:'2.5rem' } %}{% endcomp %} {% endcomp %} {% endcomp %} \ No newline at end of file diff --git a/src/lcip/inspire/index.njk b/src/lcip/inspire/index.njk index 79986d5..f300972 100644 --- a/src/lcip/inspire/index.njk +++ b/src/lcip/inspire/index.njk @@ -8,6 +8,117 @@ title: Inspire

+ + + +{% comp "dashboard.panels", { columns: 4 } %} + + {% comp "dashboard.pane", { link: "/lcip/inspire/advice-sessions" } %} +

Advice sessions offered

+ {% comp "dashboard.big_number", { number: viz.lcip.inspire.funding_advice_sessions['rows'][0]['No. of funding surgeries offered'], fontsize: '2.75rem' } %} + {% endcomp %} +

Advice Sessions

+ {% endcomp %} + + + {% comp "dashboard.pane", { link: "/lcip/inspire/applications/" } %} +

Applications received

+ {% comp "dashboard.big_number", { number: viz.lcip.inspire.applications_received['rows'][0]['No. of eligible applications'], fontsize: '2.75rem' } %} + {% endcomp %} +

Applications

+ {% endcomp %} + + {% comp "dashboard.pane", { link: "/lcip/inspire/applications/", columns: 2, rows: 2 } %} +

Funding awarded by ward

+ {% comp "dashboard.embedded_figure" %} +

This map represents the number of applicants awarded funding from each Leeds ward.

+ {{ comp.oi.map.hex_cartogram({ + config: { + hexjson: hex.wards_leeds, + data: viz.lcip.inspire.wards_funded, + scale: 'rgb(9, 156, 161) 0%, rgb(5, 64, 89) 100%', + matchKey: 'ward_code', + value: 'value', + min: 0, + max: 2, + label: '{{ n | slice(0,3) }}', + tooltip: '{{ n }}: {{ value }}' + } + }) | safe }} +

Applications

+ {% endcomp %} + {% endcomp %} + + {% comp "dashboard.pane", { link: "/lcip/inspire/results/" } %} +

Funded
applications

+ {% comp "dashboard.big_number", { + number: viz.lcip.inspire.results['rows'][0]['No. of funded organisations'] + viz.lcip.inspire.results['rows'][0]['No. of funded individual artists'], fontsize: '2.75rem' + } %} + {% endcomp %} +

Programme Results

+ {% endcomp %} + + {% comp "dashboard.pane", { link: "/lcip/inspire/funding-invested/" } %} +

Funding
invested

+ {% comp "dashboard.big_number", { number: viz.lcip.inspire.funding['rows'][0]['total'], fontsize: '2.75rem', prefix: '£'} %}{% endcomp %} +

Investment

+ {% endcomp %} + {% endcomp %} + +{% comp "dashboard.panels", { columns: 3 } %} + + {% comp "dashboard.pane", { link: "/lcip/inspire/project-outputs/" } %} +

Project
Outputs

+ {% comp "dashboard.big_number", { + number: viz.lcip.inspire.project_outputs_funded['rows'][0]['total'], fontsize: '2.75rem' } %} + {% endcomp %} +

Project Outputs

+ {% endcomp %} + + + {% comp "dashboard.pane", { link: "/lcip/inspire/artforms/" } %} +

Funded
Artforms

+ {% comp "dashboard.big_number", { + number: (viz.lcip.inspire.artform_funded['rows'][0]['total']), + fontsize: '2.75rem'} %} + {% endcomp %} +

Artforms

+ {% endcomp %} + + + {% comp "dashboard.pane", { link: "/lcip/inspire/target-groups/" } %} +

Target
Groups

+ {% comp "dashboard.big_number", { + number: (viz.lcip.inspire.target_groups_funded['rows'][0]['total']), + fontsize: '2.75rem'} %} + {% endcomp %} +

Target Groups

+ {% endcomp %} + {% endcomp %} + +{% comp "dashboard.panels", { columns: 2 } %} + + + {% comp "dashboard.pane", { link: "/lcip/inspire/reach/" } %} +

Audience

+ {% comp "dashboard.big_number", { + number: (viz.lcip.inspire.reach['rows'][0]['total']), fontsize: '2.75rem' } %} + {% endcomp %} +

Reach

+ {% endcomp %} + + {% comp "dashboard.pane", { link: "/lcip/inspire/workforce/" } %} +

Workforce

+ {% comp "dashboard.big_number", { + number: (viz.lcip.inspire.contribution_to_workforce['rows'][0]['total']), fontsize: '2.75rem' + } %} + {% endcomp %} +

Workforce

+ {% endcomp %} + + +{% endcomp %} +{# {% comp "dashboard.panels", { columns: 4 } %} {% comp "dashboard.pane", { link: "/lcip/inspire/advice-sessions" } %} @@ -100,4 +211,4 @@ title: Inspire

Project Outputs

{% endcomp %} -{% endcomp %} +{% endcomp %} #} diff --git a/src/lcip/inspire/reach/index.njk b/src/lcip/inspire/reach/index.njk index 55f6dae..c4bf8db 100644 --- a/src/lcip/inspire/reach/index.njk +++ b/src/lcip/inspire/reach/index.njk @@ -6,19 +6,19 @@ title: Inspire - Reach {% comp "dashboard.pane", { link: "/lcip/inspire/advice-sessions" } %}

Audience - in person

- {% comp "dashboard.big_number", { number: viz.lcip.inspire.reach['rows'][0]['Audience - in person'] } %} + {% comp "dashboard.big_number", { number: viz.lcip.inspire.reach['rows'][0]['Audience - in person'], fontsize: '2.5rem' } %} {% endcomp %} {% endcomp %} {% comp "dashboard.pane", { link: "/lcip/inspire/advice-sessions" } %}

Broadcast/online audiences

- {% comp "dashboard.big_number", { number: viz.lcip.inspire.reach['rows'][0]['Broadcast/online audiences'] } %} + {% comp "dashboard.big_number", { number: viz.lcip.inspire.reach['rows'][0]['Broadcast/online audiences'], fontsize: '2.5rem' } %} {% endcomp %} {% endcomp %} {% comp "dashboard.pane", { link: "/lcip/inspire/advice-sessions" } %}

Participants - in person

- {% comp "dashboard.big_number", { number: viz.lcip.inspire.reach['rows'][0]['Participants - in person'] } %} + {% comp "dashboard.big_number", { number: viz.lcip.inspire.reach['rows'][0]['Participants - in person'], fontsize: '2.5rem' } %} {% endcomp %} {% endcomp %} diff --git a/src/lcip/thrive/artforms/index.njk b/src/lcip/thrive/artforms/index.njk new file mode 100644 index 0000000..f25ca79 --- /dev/null +++ b/src/lcip/thrive/artforms/index.njk @@ -0,0 +1,93 @@ +--- +title: Thrive - Artforms +--- + +{% comp "dashboard.panels", { columns: 1 } %} + + {% comp "dashboard.pane", { bg: '#004563', color: '#ffffff' } %} +

Applied

+ {% endcomp %} +{% endcomp %} + +{% comp "dashboard.panels", { columns: 4 } %} + + {% comp "dashboard.pane" %} +

Combined Arts

+ {% comp "dashboard.big_number", { number: viz.lcip.thrive.artform_applied['rows'][0]['Combined Arts']} %}{% endcomp %} + {% endcomp %} + + {% comp "dashboard.pane" %} +

Dance

+ {% comp "dashboard.big_number", { number: viz.lcip.thrive.artform_applied['rows'][0]['Dance'] } %}{% endcomp %} + {% endcomp %} + + {% comp "dashboard.pane" %} +

Festival/Carnival

+ {% comp "dashboard.big_number", { number: viz.lcip.thrive.artform_applied['rows'][0]['Festival/Carnival']} %}{% endcomp %} + {% endcomp %} + + {% comp "dashboard.pane" %} +

Literature / Poetry / Spoken Word

+ {% comp "dashboard.big_number", { number: viz.lcip.thrive.artform_applied['rows'][0]['Literature / Poetry / Spoken Word'] } %}{% endcomp %} + {% endcomp %} + {% endcomp %} + +{% comp "dashboard.panels", { columns: 3 } %} + + + {% comp "dashboard.pane" %} +

Music

+ {% comp "dashboard.big_number", { number: viz.lcip.thrive.artform_applied['rows'][0]['Music'] } %}{% endcomp %} + {% endcomp %} + + {% comp "dashboard.pane" %} +

Theatre

+ {% comp "dashboard.big_number", { number: viz.lcip.thrive.artform_applied['rows'][0]['Theatre'] } %}{% endcomp %} + {% endcomp %} + + {% comp "dashboard.pane" %} +

Visual Art

+ {% comp "dashboard.big_number", { number: viz.lcip.thrive.artform_applied['rows'][0]['Visual Art'] } %}{% endcomp %} + {% endcomp %} +{% endcomp %} + + +{% comp "dashboard.panels", { columns: 1 } %} + + {% comp "dashboard.pane", { bg: '#004563', color: '#ffffff' } %} +

Applied

+ {% endcomp %} +{% endcomp %} + +{% comp "dashboard.panels", { columns: 3 } %} + + {% comp "dashboard.pane" %} +

Combined Arts

+ {% comp "dashboard.big_number", { number: viz.lcip.thrive.artform_funded['rows'][0]['Combined Arts']} %}{% endcomp %} + {% endcomp %} + + {% comp "dashboard.pane" %} +

Dance

+ {% comp "dashboard.big_number", { number: viz.lcip.thrive.artform_funded['rows'][0]['Dance'] } %}{% endcomp %} + {% endcomp %} + + {% comp "dashboard.pane" %} +

Festival/Carnival

+ {% comp "dashboard.big_number", { number: viz.lcip.thrive.artform_funded['rows'][0]['Festival/Carnival']} %}{% endcomp %} + {% endcomp %} + + {% comp "dashboard.pane" %} +

Music

+ {% comp "dashboard.big_number", { number: viz.lcip.thrive.artform_funded['rows'][0]['Music'] } %}{% endcomp %} + {% endcomp %} + + {% comp "dashboard.pane" %} +

Theatre

+ {% comp "dashboard.big_number", { number: viz.lcip.thrive.artform_funded['rows'][0]['Theatre'] } %}{% endcomp %} + {% endcomp %} + + {% comp "dashboard.pane" %} +

Visual Art

+ {% comp "dashboard.big_number", { number: viz.lcip.thrive.artform_funded['rows'][0]['Visual Art'] } %}{% endcomp %} + {% endcomp %} +{% endcomp %} diff --git a/src/lcip/thrive/funding-invested/index.njk b/src/lcip/thrive/funding-invested/index.njk index cc26999..719b0a0 100644 --- a/src/lcip/thrive/funding-invested/index.njk +++ b/src/lcip/thrive/funding-invested/index.njk @@ -6,17 +6,17 @@ title: Thrive - Funding Invested {% comp "dashboard.pane" %}

Funding invested from Leeds City Council

- {% comp "dashboard.big_number", { number: viz.lcip.thrive.funding['rows'][0]['Funding invested from Leeds City Council'], prefix: '£' } %}{% endcomp %} + {% comp "dashboard.big_number", { number: viz.lcip.thrive.funding['rows'][0]['Funding invested from Leeds City Council'], prefix: '£', fontsize:'2.5rem' } %}{% endcomp %} {% endcomp %} {% comp "dashboard.pane" %}

Funding invested from others

- {% comp "dashboard.big_number", { number: viz.lcip.thrive.funding['rows'][0]['Funding invested from others'], prefix: '£' } %}{% endcomp %} + {% comp "dashboard.big_number", { number: viz.lcip.thrive.funding['rows'][0]['Funding invested from others'], prefix: '£', fontsize:'2.5rem' } %}{% endcomp %} {% endcomp %} {% comp "dashboard.pane" %}

Cumulative
spend

- {% comp "dashboard.big_number", { number: (viz.lcip.thrive.funding['rows'][0]['Funding invested from Leeds City Council']) + (viz.lcip.thrive.funding['rows'][0]['Funding invested from others']), prefix: '£' } %}{% endcomp %} + {% comp "dashboard.big_number", { number: (viz.lcip.thrive.funding['rows'][0]['Funding invested from Leeds City Council']) + (viz.lcip.thrive.funding['rows'][0]['Funding invested from others']), prefix: '£', fontsize:'2.5rem' } %}{% endcomp %} {% endcomp %} {% endcomp %} \ No newline at end of file diff --git a/src/lcip/thrive/index.njk b/src/lcip/thrive/index.njk index 2c207ed..d41d66a 100644 --- a/src/lcip/thrive/index.njk +++ b/src/lcip/thrive/index.njk @@ -8,6 +8,118 @@ title: Thrive

+ + +{% comp "dashboard.panels", { columns: 4 } %} + + {% comp "dashboard.pane", { link: "/lcip/thrive/advice-sessions" } %} +

Advice sessions offered

+ {% comp "dashboard.big_number", { number: viz.lcip.thrive.funding_advice_sessions['rows'][0]['No. of funding surgeries offered'], fontsize: '2.75rem' } %} + {% endcomp %} +

Advice Sessions

+ {% endcomp %} + + + {% comp "dashboard.pane", { link: "/lcip/thrive/applications/" } %} +

Applications received

+ {% comp "dashboard.big_number", { number: viz.lcip.thrive.applications_received['rows'][0]['No. of eligible applications'], fontsize: '2.75rem' } %} + {% endcomp %} +

Applications

+ {% endcomp %} + + {% comp "dashboard.pane", { link: "/lcip/thrive/applications/", columns: 2, rows: 2 } %} +

Funding awarded by ward

+ {% comp "dashboard.embedded_figure" %} +

This map represents the number of applicants awarded funding from each Leeds ward.

+ {{ comp.oi.map.hex_cartogram({ + config: { + hexjson: hex.wards_leeds, + data: viz.lcip.thrive.wards_funded, + scale: 'rgb(9, 156, 161) 0%, rgb(5, 64, 89) 100%', + matchKey: 'ward_code', + value: 'value', + min: 0, + max: 2, + label: '{{ n | slice(0,3) }}', + tooltip: '{{ n }}: {{ value }}' + } + }) | safe }} +

Applications

+ {% endcomp %} + {% endcomp %} + + {% comp "dashboard.pane", { link: "/lcip/thrive/results/" } %} +

Funded
applications

+ {% comp "dashboard.big_number", { + number: viz.lcip.thrive.results['rows'][0]['No. of funded organisations'] + viz.lcip.thrive.results['rows'][0]['No. of funded individual artists'], fontsize: '2.75rem' + } %} + {% endcomp %} +

Programme Results

+ {% endcomp %} + + {% comp "dashboard.pane", { link: "/lcip/thrive/funding-invested/" } %} +

Funding
invested

+ {% comp "dashboard.big_number", { number: viz.lcip.thrive.funding['rows'][0]['total'], fontsize: '2.75rem'} %}{% endcomp %} +

Investment

+ {% endcomp %} + {% endcomp %} + +{% comp "dashboard.panels", { columns: 3 } %} + + {% comp "dashboard.pane", { link: "/lcip/thrive/project-outputs/" } %} +

Project
Outputs

+ {% comp "dashboard.big_number", { + number: viz.lcip.thrive.project_outputs_funded['rows'][0]['total'], fontsize: '2.75rem' } %} + {% endcomp %} +

Project Outputs

+ {% endcomp %} + + + {% comp "dashboard.pane", { link: "/lcip/thrive/artforms/" } %} +

Funded
Artforms

+ {% comp "dashboard.big_number", { + number: (viz.lcip.thrive.artform_funded['rows'][0]['total']), + fontsize: '2.75rem'} %} + {% endcomp %} +

Artforms

+ {% endcomp %} + + + {% comp "dashboard.pane", { link: "/lcip/thrive/target-groups/" } %} +

Target
Groups

+ {% comp "dashboard.big_number", { + number: (viz.lcip.thrive.target_groups_funded['rows'][0]['total']), + fontsize: '2.75rem'} %} + {% endcomp %} +

Target Groups

+ {% endcomp %} + {% endcomp %} + +{% comp "dashboard.panels", { columns: 2 } %} + + + {% comp "dashboard.pane", { link: "/lcip/thrive/reach/" } %} +

Audience

+ {% comp "dashboard.big_number", { + number: (viz.lcip.thrive.reach['rows'][0]['total']), fontsize: '2.75rem' } %} + {% endcomp %} +

Reach

+ {% endcomp %} + + {% comp "dashboard.pane", { link: "/lcip/thrive/workforce/" } %} +

Workforce

+ {% comp "dashboard.big_number", { + number: (viz.lcip.thrive.contribution_to_workforce['rows'][0]['total']), fontsize: '2.75rem' + } %} + {% endcomp %} +

Workforce

+ {% endcomp %} + + +{% endcomp %} + + +{# {% comp "dashboard.panels", { columns: 4 } %} {% comp "dashboard.pane" %} @@ -94,4 +206,4 @@ title: Thrive

Project Outputs

{% endcomp %} -{% endcomp %} +{% endcomp %} #} diff --git a/src/lcip/thrive/reach/index.njk b/src/lcip/thrive/reach/index.njk index 6d8fd07..981bb17 100644 --- a/src/lcip/thrive/reach/index.njk +++ b/src/lcip/thrive/reach/index.njk @@ -6,19 +6,19 @@ title: Thrive - Reach {% comp "dashboard.pane", { link: "/lcip/thrive/advice-sessions" } %}

Audience - in person

- {% comp "dashboard.big_number", { number: viz.lcip.thrive.reach['rows'][0]['Audience - in person'] } %} + {% comp "dashboard.big_number", { number: viz.lcip.thrive.reach['rows'][0]['Audience - in person'] , fontsize: '2.5rem'} %} {% endcomp %} {% endcomp %} {% comp "dashboard.pane", { link: "/lcip/thrive/advice-sessions" } %}

Broadcast/online audiences

- {% comp "dashboard.big_number", { number: viz.lcip.thrive.reach['rows'][0]['Broadcast/online audiences'] } %} + {% comp "dashboard.big_number", { number: viz.lcip.thrive.reach['rows'][0]['Broadcast/online audiences'] , fontsize: '2.5rem'} %} {% endcomp %} {% endcomp %} {% comp "dashboard.pane", { link: "/lcip/thrive/advice-sessions" } %}

Participants - in person

- {% comp "dashboard.big_number", { number: viz.lcip.thrive.reach['rows'][0]['Participants - in person'] } %} + {% comp "dashboard.big_number", { number: viz.lcip.thrive.reach['rows'][0]['Participants - in person'], fontsize: '2.5rem' } %} {% endcomp %} {% endcomp %}