{error.message}
19 | 20 | {#if isDev && error.stack} 21 |{error.stack}
22 | {/if}
23 |
24 |
45 |
--------------------------------------------------------------------------------
/ui/src/node_modules/app/components/NoScript.svelte:
--------------------------------------------------------------------------------
1 |
12 |
13 |
39 |
--------------------------------------------------------------------------------
/ds/conda_environment.yaml:
--------------------------------------------------------------------------------
1 | name: beis_indicators
2 | channels:
3 | - conda-forge
4 | - defaults
5 | dependencies:
6 | - pip
7 | - python=3.6.5
8 | - numpy
9 | - scipy
10 | - pandas
11 | - matplotlib
12 | - jupyter
13 | - ipython
14 | - jupyterlab
15 | - requests
16 | - rtree
17 | - scikit-learn
18 | - seaborn
19 | - xlrd
20 | - pip:
21 | - geopandas
22 | - shapely
23 | - descartes
24 | - mapclassify
25 | - ratelim
26 | - eurostat
27 |
28 | # Tooling requirements
29 | - tqdm
30 | - pyyaml
31 | - tables
32 | - dvc
33 | - click
34 | - Sphinx
35 | - sphinxcontrib.napoleon
36 | - coverage
37 | - awscli
38 | - flake8
39 | - python-dotenv>=0.5.1
40 | - jupyter_contrib_nbextensions
41 | - jupyter_nbextensions_configurator
42 | - jq
43 | - pytest
44 |
--------------------------------------------------------------------------------
/ds/beis_indicators/crunchbase/make_crunchbase_tech_companies.py:
--------------------------------------------------------------------------------
1 | import numpy as np
2 | import logging
3 |
4 | from beis_indicators import project_dir
5 | from beis_indicators.geo import NutsCoder, LepCoder
6 | from beis_indicators.indicators import points_to_indicator, save_indicator
7 | from beis_indicators.crunchbase.process_cb import load_org_founded_counts
8 |
9 |
10 | coders = {
11 | 'nuts2': NutsCoder(level=2),
12 | 'nuts3': NutsCoder(level=3),
13 | 'lep': LepCoder()
14 | }
15 |
16 | founded = load_org_founded_counts()
17 |
18 | for geo, coder in coders.items():
19 | total_companies = points_to_indicator(founded, value_col='companies_founded',
20 | coder=coder, aggfunc=np.sum, projection='EPSG:4326',
21 | x_col='longitude', y_col='latitude', astype=int)
22 | save_indicator(total_companies, 'crunchbase', geo)
23 |
24 |
--------------------------------------------------------------------------------
/ds/data/aux/shapefile_urls.json:
--------------------------------------------------------------------------------
1 | {"nuts2_2016":"https://ec.europa.eu/eurostat/cache/GISCO/distribution/v2/nuts/download/ref-nuts-2016-01m.shp.zip",
2 | "nuts2_2013":"https://ec.europa.eu/eurostat/cache/GISCO/distribution/v2/nuts/download/ref-nuts-2013-01m.shp.zip",
3 | "nuts2_2010":"https://ec.europa.eu/eurostat/cache/GISCO/distribution/v2/nuts/download/ref-nuts-2010-01m.shp.zip",
4 | "nuts2_2006":"https://ec.europa.eu/eurostat/cache/GISCO/distribution/v2/nuts/download/ref-nuts-2006-01m.shp.zip",
5 | "nuts2_2003":"https://ec.europa.eu/eurostat/cache/GISCO/distribution/v2/nuts/download/ref-nuts-2003-01m.shp.zip",
6 | "leps_2014":"https://opendata.arcgis.com/datasets/17c92615a55f4dbf945e8eaf642eaa87_0.zip",
7 | "leps_2017":"https://opendata.arcgis.com/datasets/9da81147e3114dc2849dc7ab2d586e5a_0.zip",
8 | "leps_2020":"https://opendata.arcgis.com/datasets/0af0f6e04abf44f48868b441afd67e0e_0.zip"}
9 |
10 |
--------------------------------------------------------------------------------
/ds/data/aux/framework.json:
--------------------------------------------------------------------------------
1 | [{
2 | "description": "Existing capability to perform public R&D",
3 | "id": "public_rnd",
4 | "label": "Public R&D",
5 | "order": 1
6 | },
7 | {
8 | "description": "Knowledge exchange and university commercialisation",
9 | "id": "knowledge_exchange",
10 | "label": "Knowledge exchange and university commercialisation",
11 | "order": 2
12 | },
13 | {
14 | "description": "Business absorptive capacity and private R&D investment",
15 | "id": "private_rnd",
16 | "label": "Private R&D",
17 | "order": 3
18 | },
19 | {
20 | "description": "Place potential to attract researchers and innovators",
21 | "id": "place_potential",
22 | "label": "Places attracting R&D firms and workers",
23 | "order": 4
24 | },
25 | {
26 | "description": "Challenge oriented activity",
27 | "id": "challenge_activity",
28 | "label": "Challenge oriented activity",
29 | "order": 5
30 | }]
31 |
--------------------------------------------------------------------------------
/ds/beis_indicators/gtr/make_gtr_funding.py:
--------------------------------------------------------------------------------
1 | import numpy as np
2 | import logging
3 |
4 | from beis_indicators import project_dir
5 | from beis_indicators.geo import NutsCoder, LepCoder
6 | from beis_indicators.indicators import points_to_indicator, save_indicator
7 | from beis_indicators.gtr.gtr_processing import load_gtr_funding_by_loc
8 |
9 |
10 | var_name = 'total_ukri_funding'
11 |
12 | coders = {
13 | 'nuts2': NutsCoder(level=2),
14 | 'nuts3': NutsCoder(level=3),
15 | 'lep': LepCoder()
16 | }
17 |
18 | funding = load_gtr_funding_by_loc(min_year=2006, max_year=2019)
19 |
20 | for geo, coder in coders.items():
21 | total_funding = points_to_indicator(funding, value_col='amount', coder=coder,
22 | aggfunc=np.mean, value_rename=var_name,
23 | projection='EPSG:4326', x_col='longitude', y_col='latitude')
24 | save_indicator(total_funding, 'gtr', geo)
25 |
--------------------------------------------------------------------------------
/ds/beis_indicators/hebci/make_hebci.py:
--------------------------------------------------------------------------------
1 | import numpy as np
2 | import logging
3 |
4 | from beis_indicators import project_dir
5 | from beis_indicators.geo import NutsCoder, LepCoder
6 | from beis_indicators.indicators import points_to_indicator, save_indicator
7 | from beis_indicators.hebci.process_hebci import load_hebci
8 |
9 |
10 | hebci_data = load_hebci()
11 |
12 | coders = {
13 | 'nuts2': NutsCoder(level=2),
14 | 'nuts3': NutsCoder(level=3),
15 | 'lep': LepCoder()
16 | }
17 |
18 | for name, data in hebci_data.items():
19 | for geo, coder in coders.items():
20 | indicator = points_to_indicator(data, value_col='Value', coder=coder,
21 | aggfunc=np.sum, value_rename=name, dp=0,
22 | projection='EPSG:4326', x_col='longitude', y_col='latitude')
23 | indicator[name] = indicator[name].astype(int)
24 | save_indicator(indicator, 'hebci', geo)
25 |
26 |
--------------------------------------------------------------------------------
/ds/data/processed/hesa/total_university_buildings.lep.yaml:
--------------------------------------------------------------------------------
1 | api_doc_url: https://www.hesa.ac.uk/data-and-analysis/estates/table-1
2 | api_type: FETCH
3 | title: Total number of university buildings
4 | subtitle: Number of university buildings in a LEP region
5 | endpoint_url: https://www.hesa.ac.uk/data-and-analysis/estates/data.csv
6 | framework_group: public_rnd
7 | is_experimental: False
8 | order: [year, lep_id, lep_year_spec, value.id]
9 | region:
10 | type: LepRegion
11 | source_url: https://geoportal.statistics.gov.uk/search?collection=Dataset&sort=name&tags=all(BDY_LEP)
12 | schema:
13 | lep_id:
14 | type: LepRegion.id
15 | lep_year_spec:
16 | type: LepRegion.year_spec
17 | value:
18 | data_type: int
19 | id: total_university_buildings
20 | label: Total number of buildings
21 | year:
22 | data_type: int
23 | label: Academic year (start)
24 | source_name: HESA (Higher Education Statistical Agency)
25 | source_url: https://www.hesa.ac.uk/
26 |
--------------------------------------------------------------------------------
/ds/data/processed/hesa/gbp_research_income.lep.yaml:
--------------------------------------------------------------------------------
1 | api_doc_url: https://www.hesa.ac.uk/data-and-analysis/estates/table-1
2 | api_type: FETCH
3 | title: Research income (GBP)
4 | subtitle: Research income received by universities in the LEP region
5 | endpoint_url: https://www.hesa.ac.uk/data-and-analysis/estates/data.csv
6 | framework_group: public_rnd
7 | is_experimental: False
8 | order: [year, lep_id, lep_year_spec, value.id]
9 | region:
10 | type: LepRegion
11 | source_url: https://geoportal.statistics.gov.uk/search?collection=Dataset&sort=name&tags=all(BDY_LEP)
12 | schema:
13 | lep_id:
14 | type: LepRegion.id
15 | lep_year_spec:
16 | type: LepRegion.year_spec
17 | value:
18 | data_type: int
19 | format: ','
20 | id: gbp_research_income
21 | label: Research income
22 | type: GBP
23 | year:
24 | data_type: int
25 | label: Academic year (start)
26 | source_name: HESA (Higher Education Statistical Agency)
27 | source_url: https://www.hesa.ac.uk/
28 |
--------------------------------------------------------------------------------
/ds/data/processed/ref/mean_ref_stem.csv:
--------------------------------------------------------------------------------
1 | year,nuts_id,nuts_year_spec,mean_ref_stem
2 | 2014,UKH1,2013,3.35
3 | 2014,UKJ1,2013,3.26
4 | 2014,UKI3,2013,3.25
5 | 2014,UKL2,2013,3.15
6 | 2014,UKK1,2013,3.15
7 | 2014,UKM2,2013,3.14
8 | 2014,UKJ3,2013,3.13
9 | 2014,UKE3,2013,3.12
10 | 2014,UKE2,2013,3.12
11 | 2014,UKC1,2013,3.1
12 | 2014,UKD3,2013,3.09
13 | 2014,UKG3,2013,3.07
14 | 2014,UKD7,2013,3.04
15 | 2014,UKM3,2013,3.03
16 | 2014,UKF1,2013,3.01
17 | 2014,UKE4,2013,3.0
18 | 2014,UKK4,2013,3.0
19 | 2014,UKD4,2013,2.98
20 | 2014,UKJ2,2013,2.98
21 | 2014,UKM5,2013,2.97
22 | 2014,UKC2,2013,2.95
23 | 2014,UKN0,2013,2.95
24 | 2014,UKL1,2013,2.92
25 | 2014,UKI4,2013,2.92
26 | 2014,UKM6,2013,2.91
27 | 2014,UKF2,2013,2.85
28 | 2014,UKJ4,2013,2.84
29 | 2014,UKE1,2013,2.83
30 | 2014,UKH2,2013,2.83
31 | 2014,UKG2,2013,2.67
32 | 2014,UKI7,2013,2.59
33 | 2014,UKF3,2013,2.55
34 | 2014,UKH3,2013,2.51
35 | 2014,UKI5,2013,2.47
36 | 2014,UKI6,2013,2.44
37 | 2014,UKK2,2013,2.31
38 | 2014,UKG1,2013,2.24
39 | 2014,UKD6,2013,1.76
40 |
--------------------------------------------------------------------------------
/ds/data/aux/cordis_url_suffixes.json:
--------------------------------------------------------------------------------
1 | {"h2020": {"organizations": "cordis-h2020projectDeliverables.csv", "project_deliverables": "cordis-h2020projectDeliverables.csv", "project_publications": "cordis-h2020projectPublications.csv", "projects": "cordis-h2020projects.csv", "reports": "cordis-h2020reports.csv"}, "fp7": {"organizations": "cordis-fp7organizations.csv", "projects": "cordis-fp7projects.csv", "reports": "cordis-fp7reports.csv"}, "fp6": {"organizations": "FP6/cordis-fp6organizations.csv", "projects": "FP6/cordis-fp6projects.csv"}, "fp5": {"organizations": "FP5/cordis-fp5organizations.csv", "projects": "FP5/cordis-fp5projects.csv"}, "fp4": {"organizations": "FP4/cordis-fp4organizations.csv", "projects": "FP4/cordis-fp4projects.csv"}, "fp3": {"organizations": "FP3/cordis-fp3organizations.csv", "projects": "FP3/cordis-fp3projects.csv"}, "fp2": {"organizations": "FP2/cordis-fp2organizations.csv", "projects": "FP2/cordis-fp2projects.csv"}, "fp1": {"organizations": "FP1/cordis-fp1organizations.csv", "projects": "FP1/cordis-fp1projects.csv"}}
--------------------------------------------------------------------------------
/ds/data/processed/hesa/area_university_site.lep.yaml:
--------------------------------------------------------------------------------
1 | api_doc_url: https://www.hesa.ac.uk/data-and-analysis/estates/table-1
2 | api_type: FETCH
3 | data_date: 20200820
4 | title: Area of university site
5 | subtitle: Area of university sites for universities in the LEP region
6 | endpoint_url: https://www.hesa.ac.uk/data-and-analysis/estates/data.csv
7 | framework_group: public_rnd
8 | is_experimental: False
9 | order: [year, lep_id, lep_year_spec, value.id]
10 | region:
11 | type: LepRegion
12 | source_url: https://geoportal.statistics.gov.uk/search?collection=Dataset&sort=name&tags=all(BDY_LEP)
13 | schema:
14 | lep_id:
15 | type: LepRegion.id
16 | lep_year_spec:
17 | type: LepRegion.year_spec
18 | value:
19 | format: .2f
20 | id: area_university_site
21 | label: Total area of university sites
22 | type: Area_hectare
23 | year:
24 | data_type: int
25 | label: Academic year (start)
26 | source_name: HESA (Higher Education Statistical Agency)
27 | source_url: https://www.hesa.ac.uk/
28 |
--------------------------------------------------------------------------------
/ds/data/processed/ref/mean_ref.csv:
--------------------------------------------------------------------------------
1 | year,nuts_id,nuts_year_spec,mean_ref
2 | 2014,UKH1,2013,3.29
3 | 2014,UKI3,2013,3.2
4 | 2014,UKL2,2013,3.2
5 | 2014,UKJ1,2013,3.18
6 | 2014,UKE3,2013,3.1
7 | 2014,UKM2,2013,3.08
8 | 2014,UKC1,2013,3.08
9 | 2014,UKE2,2013,3.06
10 | 2014,UKK1,2013,3.05
11 | 2014,UKG3,2013,3.02
12 | 2014,UKD3,2013,3.0
13 | 2014,UKJ3,2013,3.0
14 | 2014,UKM3,2013,2.99
15 | 2014,UKJ2,2013,2.98
16 | 2014,UKI4,2013,2.97
17 | 2014,UKK4,2013,2.97
18 | 2014,UKF1,2013,2.96
19 | 2014,UKN0,2013,2.95
20 | 2014,UKE4,2013,2.93
21 | 2014,UKD7,2013,2.92
22 | 2014,UKL1,2013,2.91
23 | 2014,UKC2,2013,2.89
24 | 2014,UKM5,2013,2.88
25 | 2014,UKF2,2013,2.85
26 | 2014,UKD4,2013,2.85
27 | 2014,UKJ4,2013,2.84
28 | 2014,UKH3,2013,2.79
29 | 2014,UKH2,2013,2.77
30 | 2014,UKM6,2013,2.76
31 | 2014,UKG2,2013,2.72
32 | 2014,UKI6,2013,2.7
33 | 2014,UKE1,2013,2.7
34 | 2014,UKK2,2013,2.69
35 | 2014,UKI7,2013,2.58
36 | 2014,UKF3,2013,2.51
37 | 2014,UKI5,2013,2.35
38 | 2014,UKD1,2013,2.13
39 | 2014,UKD6,2013,2.08
40 | 2014,UKG1,2013,2.08
41 | 2014,UKK3,2013,2.04
42 |
--------------------------------------------------------------------------------
/ds/data/processed/hesa/total_postgraduates.lep.yaml:
--------------------------------------------------------------------------------
1 | api_doc_url: https://www.hesa.ac.uk/data-and-analysis/students
2 | api_type: FETCH
3 | title: Total number of postgraduates
4 | subtitle: Number of postgraduate (research) students enrolled full-time in universities in a LEP region in the starting academic year.
5 | endpoint_url: https://www.hesa.ac.uk/data-and-analysis/students/table-13.csv
6 | framework_group: public_rnd
7 | is_experimental: False
8 | order: [year, lep_id, lep_year_spec, value.id]
9 | region:
10 | type: LepRegion
11 | source_url: https://geoportal.statistics.gov.uk/search?collection=Dataset&sort=name&tags=all(BDY_LEP)
12 | schema:
13 | lep_id:
14 | type: LepRegion.id
15 | lep_year_spec:
16 | type: LepRegion.year_spec
17 | value:
18 | data_type: int
19 | id: total_postgraduates
20 | label: Total number of postgraduate students
21 | year:
22 | data_type: int
23 | label: Academic year (start)
24 | source_name: HESA (Higher Education Statistical Agency)
25 | source_url: https://www.hesa.ac.uk/
26 |
--------------------------------------------------------------------------------
/ds/data/processed/hesa/fte_research_students.lep.yaml:
--------------------------------------------------------------------------------
1 | api_doc_url: https://www.hesa.ac.uk/data-and-analysis/estates/table-1
2 | api_type: FETCH
3 | title: Number of research students (FTE)
4 | subtitle: Aggregate of Full Time Equivalent (FTE) of research students enrolled in universities in the LEP region
5 | endpoint_url: https://www.hesa.ac.uk/data-and-analysis/estates/data.csv
6 | framework_group: public_rnd
7 | is_experimental: False
8 | order: [year, lep_id, lep_year_spec, value.id]
9 | region:
10 | type: LepRegion
11 | source_url: https://geoportal.statistics.gov.uk/search?collection=Dataset&sort=name&tags=all(BDY_LEP)
12 | schema:
13 | lep_id:
14 | type: LepRegion.id
15 | lep_year_spec:
16 | type: LepRegion.year_spec
17 | value:
18 | id: fte_research_students
19 | label: Research students (Full Time Equivalent)
20 | type: FTE
21 | data_type: int
22 | year:
23 | data_type: int
24 | label: Academic year (start)
25 | source_name: HESA (Higher Education Statistical Agency)
26 | source_url: https://www.hesa.ac.uk/
27 |
--------------------------------------------------------------------------------
/ds/data/processed/hesa/total_university_buildings.nuts2.yaml:
--------------------------------------------------------------------------------
1 | api_doc_url: https://www.hesa.ac.uk/data-and-analysis/estates/table-1
2 | api_type: FETCH
3 | title: Total number of university buildings
4 | subtitle: Number of university buildings in a NUTS2 region
5 | endpoint_url: https://www.hesa.ac.uk/data-and-analysis/estates/data.csv
6 | framework_group: public_rnd
7 | is_experimental: False
8 | order: [year, nuts_id, nuts_year_spec, value.id]
9 | region:
10 | type: NutsRegion
11 | level: 2
12 | source_url: http://geoportal1-ons.opendata.arcgis.com/datasets/48b6b85bb7ea43699ee85f4ecd12fd36_0.zip?outSR=%7B%22latestWkid%22:27700,%22wkid%22:27700%7D
13 | schema:
14 | nuts_id:
15 | type: NutsRegion.id
16 | nuts_year_spec:
17 | type: NutsRegion.year_spec
18 | value:
19 | data_type: int
20 | id: total_university_buildings
21 | label: Total number of buildings
22 | year:
23 | data_type: int
24 | label: Academic year (start)
25 | source_name: HESA (Higher Education Statistical Agency)
26 | source_url: https://www.hesa.ac.uk/
27 |
--------------------------------------------------------------------------------
/ds/data/processed/hesa/total_university_buildings.nuts3.yaml:
--------------------------------------------------------------------------------
1 | api_doc_url: https://www.hesa.ac.uk/data-and-analysis/estates/table-1
2 | api_type: FETCH
3 | title: Total number of university buildings
4 | subtitle: Number of university buildings in a NUTS3 region
5 | endpoint_url: https://www.hesa.ac.uk/data-and-analysis/estates/data.csv
6 | framework_group: public_rnd
7 | is_experimental: False
8 | order: [year, nuts_id, nuts_year_spec, value.id]
9 | region:
10 | type: NutsRegion
11 | level: 3
12 | source_url: http://geoportal1-ons.opendata.arcgis.com/datasets/48b6b85bb7ea43699ee85f4ecd12fd36_0.zip?outSR=%7B%22latestWkid%22:27700,%22wkid%22:27700%7D
13 | schema:
14 | nuts_id:
15 | type: NutsRegion.id
16 | nuts_year_spec:
17 | type: NutsRegion.year_spec
18 | value:
19 | data_type: int
20 | id: total_university_buildings
21 | label: Total number of buildings
22 | year:
23 | data_type: int
24 | label: Academic year (start)
25 | source_name: HESA (Higher Education Statistical Agency)
26 | source_url: https://www.hesa.ac.uk/
27 |
--------------------------------------------------------------------------------
/ds/data/processed/hesa/gbp_research_income.nuts3.yaml:
--------------------------------------------------------------------------------
1 | api_doc_url: https://www.hesa.ac.uk/data-and-analysis/estates/table-1
2 | api_type: FETCH
3 | title: Research income (GBP)
4 | subtitle: Research income received by universities in the NUTS3 region
5 | endpoint_url: https://www.hesa.ac.uk/data-and-analysis/estates/data.csv
6 | framework_group: public_rnd
7 | is_experimental: False
8 | order: [year, nuts_id, nuts_year_spec, value.id]
9 | region:
10 | type: NutsRegion
11 | level: 3
12 | source_url: http://geoportal1-ons.opendata.arcgis.com/datasets/48b6b85bb7ea43699ee85f4ecd12fd36_0.zip?outSR=%7B%22latestWkid%22:27700,%22wkid%22:27700%7D
13 | schema:
14 | nuts_id:
15 | type: NutsRegion.id
16 | nuts_year_spec:
17 | type: NutsRegion.year_spec
18 | value:
19 | data_type: int
20 | format: ','
21 | id: gbp_research_income
22 | label: Research income
23 | type: GBP
24 | year:
25 | data_type: int
26 | label: Academic year (start)
27 | source_name: HESA (Higher Education Statistical Agency)
28 | source_url: https://www.hesa.ac.uk/
29 |
--------------------------------------------------------------------------------
/ds/data/processed/hesa/area_university_site.nuts3.yaml:
--------------------------------------------------------------------------------
1 | api_doc_url: https://www.hesa.ac.uk/data-and-analysis/estates/table-1
2 | api_type: FETCH
3 | title: Area of university site
4 | subtitle: Area of university sites for universities in the NUTS3 region
5 | endpoint_url: https://www.hesa.ac.uk/data-and-analysis/estates/data.csv
6 | framework_group: public_rnd
7 | is_experimental: False
8 | order: [year, nuts_id, nuts_year_spec, value.id]
9 | region:
10 | type: NutsRegion
11 | level: 3
12 | source_url: http://geoportal1-ons.opendata.arcgis.com/datasets/48b6b85bb7ea43699ee85f4ecd12fd36_0.zip?outSR=%7B%22latestWkid%22:27700,%22wkid%22:27700%7D
13 | schema:
14 | nuts_id:
15 | type: NutsRegion.id
16 | nuts_year_spec:
17 | type: NutsRegion.year_spec
18 | value:
19 | format: .2f
20 | id: area_university_site
21 | label: Total area of university sites
22 | type: Area_hectare
23 | year:
24 | data_type: int
25 | label: Academic year (start)
26 | source_name: HESA (Higher Education Statistical Agency)
27 | source_url: https://www.hesa.ac.uk/
28 |
--------------------------------------------------------------------------------
/ds/data/processed/hebci/graduate_startups.lep.yaml:
--------------------------------------------------------------------------------
1 | api_doc_url: https://www.hesa.ac.uk/data-and-analysis/providers/business-community/
2 | api_type: FETCH
3 | data_date: 20200928
4 | description: Number of active startups founded by higher education graduates.
5 | title: Active graduate startups
6 | subtitle: Number of active startups founded by higher education graduates.
7 | endpoint_url: https://www.hesa.ac.uk/data-and-analysis/providers/business-community/table-4e.csv
8 | framework_group: knowledge_exchange
9 | is_experimental: False
10 | is_public: True
11 | order: [year, lep_id, lep_year_spec, value.id]
12 | region:
13 | type: LepRegion
14 | source_url: LepRegion.source_url
15 | source: LepRegion.source
16 | schema:
17 | lep_id:
18 | type: LepRegion.lep_id
19 | lep_year_spec:
20 | type: LepRegion.lep_year_spec
21 | value:
22 | data_type: int
23 | id: graduate_startups
24 | label: Startups
25 | year:
26 | data_type: int
27 | label: Year
28 | source_name: HESA (Higher Education Statistical Agency)
29 | source_url: https://www.hesa.ac.uk/
30 |
--------------------------------------------------------------------------------
/ds/data/processed/hesa/gbp_research_income.nuts2.yaml:
--------------------------------------------------------------------------------
1 | api_doc_url: https://www.hesa.ac.uk/data-and-analysis/estates/table-1
2 | api_type: FETCH
3 | title: Research income (GBP)
4 | subtitle: Research income received by universities in the NUTS2 region
5 | endpoint_url: https://www.hesa.ac.uk/data-and-analysis/estates/data.csv
6 | framework_group: public_rnd
7 | is_experimental: False
8 | nuts_level: 2
9 | order: [year, nuts_id, nuts_year_spec, value.id]
10 | region:
11 | type: NutsRegion
12 | level: 2
13 | source_url: http://geoportal1-ons.opendata.arcgis.com/datasets/48b6b85bb7ea43699ee85f4ecd12fd36_0.zip?outSR=%7B%22latestWkid%22:27700,%22wkid%22:27700%7D
14 | schema:
15 | nuts_id:
16 | type: NutsRegion.id
17 | nuts_year_spec:
18 | type: NutsRegion.year_spec
19 | value:
20 | data_type: int
21 | format: ','
22 | id: gbp_research_income
23 | label: Research income
24 | type: GBP
25 | year:
26 | data_type: int
27 | label: Academic year (start)
28 | source_name: HESA (Higher Education Statistical Agency)
29 | source_url: https://www.hesa.ac.uk/
30 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | The MIT License (MIT)
2 |
3 | Copyright (c) 2021, Nesta
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6 |
7 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
8 |
9 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
10 |
--------------------------------------------------------------------------------
/ds/data/processed/eurostat/eurostat_gdp_per_capita.nuts2.yaml:
--------------------------------------------------------------------------------
1 | api_doc_url: https://ec.europa.eu/eurostat/cache/metadata/en/rd_esms.htm
2 | api_type: FETCH
3 | title: GDP per capita
4 | subtitle: Regional gross domestic product (GDP) expressed in purchasing power standards by NUTS 2 regions.
5 | endpoint_url: http://ec.europa.eu/eurostat/wdds/rest/data/v2.1/json/en/tgs00004
6 | framework_group: private_rnd
7 | is_experimental: False
8 | order: [year, nuts_id, nuts_year_spec, value.id] # do not change; specifies the order of the exported indicator fields
9 | region:
10 | type: NutsRegion
11 | level: 2
12 | source: PROVIDED
13 | schema:
14 | nuts_id:
15 | type: NutsRegion.nuts_id
16 | nuts_year_spec:
17 | type: NutsRegion.nuts_year_spec
18 | value:
19 | data_type: int
20 | format: ','
21 | id: eurostat_gdp_per_capita
22 | label: Expenditure (to nearest 10000)
23 | type: EUR
24 | year:
25 | data_type: int
26 | label: Year
27 | source_name: Eurostat (European Statistical Office)
28 | source_url: https://ec.europa.eu/eurostat/
29 |
--------------------------------------------------------------------------------
/ui/src/node_modules/app/components/glyphs/ColorClear.svelte:
--------------------------------------------------------------------------------
1 | 15 | Welcome to the {toolLongName}. 16 |
17 |18 | The tool is currently in a Beta release. 19 |
20 |21 | We accept feedback from live users: please use the provided 22 | feedback form 26 | or email your observations to 27 | 31 | {contactEmail}. 32 | 33 |
34 | 35 |Thanks!
36 |