This final course project deals with the genesis and the transformation of Tech City (aka Silicon Roundabout), one of the most prominent technology-based clusters in the world.
The students are required to jointly use geospatial analysis and dynamic visualization to represent the emergence and transformation of Tech City. The audience is difficult to frame – the visualization should be included in a blog talking about digital technologies and societies.
To deliver the project, students may want to:
- conduct a qualitative/historical investigation of the history of Tech city
- appreciate the existence of key events or policy making decisions that could have represented turning points in the lifecycle of Tech City
- company-level data on UK-based businesses can be retrieved from the archived of Free Company Data Product
data-viz-ftp
├── README.md
├── .gitignore
├── requirements.txt
├── companion_document.docx
├── datasets
│ ├── Industry_codes - Finance.csv
│ ├── Industry_codes - Info - Communcation Tech.csv
│ ├── Industry_codes - Professional, scientific, technical.csv
│ ├── London_Borough_Excluding_MHW.json
│ ├── cleaned_data.tar.gz
│ ├── final_cleaned_data.csv
│ ├── industry_added_cleaned_data.csv
│ ├── pivot_table_year_cumcount.csv
│ ├── tech_industry_added_cleaned_data.csv
│ ├── tech_roundabout_coordinates.csv
│ ├── tech_roundabout_merge.csv
│ └── uk_plotting_data.csv
└── scripts
├── data_preprocessing
│ ├── 00_extract_cleaned_data.ipynb
│ ├── 01_Select Features.ipynb
│ ├── 02_final_data_cleaning.ipynb
│ ├── 03_Industry_cleanup.ipynb
│ ├── not_run_data_cleaning.ipynb
| └── not_run_get_coordinate.ipynb
└── visualization
├── output
│ ├── sector_comparison_frames
│ ├── sector_comparison.html
│ ├── events_sector_tech_city.png
│ ├── geospatial.html
│ ├── lollipop_event_chart.html
│ ├── pie.html
│ └── timeline_chart.html
├── 00_tech_city_geospatial_by_sector.ipynb
├── 01_tech_city_growth_over_time.ipynb
└── 02_impact_events_visulisations.ipynb
requirements.txt
-> Python packages requirementscompanion_document.docx
-> companion document explains the background for the visualization
Industry_codes - Finance.csv
-> industry codes for companies under finance umbrellaIndustry_codes - Info - Communcation Tech.csv
-> industry codes for companies under info tech umbrellaIndustry_codes - Professional, scientific, technical.csv
-> industry codes for companies under scientific and technical umbrellaLondon_Borough_Excluding_MHW.json
-> .json file contains London mapcleaned_data.tar.gz
->.tar.gz
file containscleaned_data.csv
final_cleaned_data.csv
-> all data with unnecessary companies and columns removedindustry_added_cleaned_data.csv
-> column addition from external data derived from gov.ukpivot_table_year_cumcount.csv
-> every year with sector as column titles and cummulative count for each yeartech_industry_added_cleaned_data.csv
-> all data considering only the 17 tech sectors we have chosentech_roundabout_coordinates.csv
-> coordinates of companies in tech roundabout by postcodetech_roundabout_merge.csv
-> coordinates of companies merged with sector datauk_plotting_data.csv
-> company wise data along with latitude, longitude and company name
00_extract_cleaned_data.ipynb
-> extractcleaned_data.csv
file from gunzip01_Select Features.ipynb
-> extractfeature_data.csv
file from gunzip02_final_data_cleaning.ipynb
-> extractfinal_cleaned.csv
file from gunzip03_Industry_cleanup.ipynb
-> extractindustry_added_cleaned_data.csv
file from gunzipnot_run_data_cleaning.ipynb
-> clean raw data and createcleaned_data.csv
not_run_get_coordinate.ipynb
-> request coordinates from a server
00_tech_city_geospatial_by_sector.ipynb
-> geospatial visualisation of Tech City01_tech_city_growth_over_time.ipynb
-> growth of industries over time02_impact_events_visulisations.ipynb
-> impact of global events on the development of Tech City
sector_comparison_frames
-> folder contains images forsector_comparison.html
sector_comparison.html
-> sector development over real time during the development of Tech Cityevents_sector_tech_city.png
-> heat map of the impact of different key events on each sectorgeospatial.html
-> sector composition of Tech City with geographical location in the Tech Citylollipop_event_chart.html
-> key events breakdown and its effect on Tech City by sectorpie.html
-> district and sector wise breakdown of Tech Citytimeline_chart.html
-> overview of tech sector growth of life of Tech City