'Silicon Valley comes to the UK' – Appathon 2011
Submitted by admin on Thu, 15/09/2011 - 14:48 | Updated on Mon, 17/10/2011 - 09:34Selected Government datasets list
These datasets are for use in the 'Silicon Valley comes to the UK' appathon. They have been sourced from across government.
You will find the data in numerous formats. data.gov.uk has processed some selected datasets and exported them as SQLITE database files. These have been provided as standalone databases for use in your Apps and are recommend as a good starting point. You can either link directly to them or download them locally. We have provided links to source pages and explanatory pages which contain explanation and guidance about the data. If you are developing on Android, then you will need to alter the tables in order to use them. See this useful information about using sqlite in android applications. If you are developing on Windows Phone see this article about using SQLite in a Windows Pnone app.
If you can't find a dataset that interests you, then you can use our data search to explore over 7000 government datasets in data.gov.uk.
Education
Primary schools performance table (key stage 2) - underlying data (for England)
- Publisher: Department for Education
- Source home page
- Source data
- Explanatory data
- SQLITE3 file
Secondary schools performance table (GCSE and equivalent) - underlying data (for England)
- Publisher: Department for Education
- Source home page
- Source data
- Explanatory data
- SQLITE3 file
School and college performance table (key stage 5)- underlying data (for England)
- Publisher: Department for Education
- Source home page
- Source data
- Explanatory data
- SQLITE3 file
Participation in Education, Training and Employment by 16-18 Year Olds in England
- Publisher: Department for Education
- Source home page
Salary of graduates by course topic (National Student Survey)
- Publisher: HEFCE/Directgov
- Source home page
- Source data
- Explanatory data
- SQLITE3 file
General qualifications dataset (GCSE and GCE results for 2006-2011)
- Publisher: Ofqual
- Source home page
- SQLITE3 file
Registered childcare providers and places in England, June 2011
- Publisher: Ofsted
- Source home page
- Source data
Education Endpoints
- Publisher: UK Government
- Source home page
Sector quartile averages for the National Student Survey
- Publisher: UK Government
- SectorQuartiles
Data for all institutions:
- NSSFullTime2
- NSSPartTime
- NSSFullTime1
- Context
- Achievement
- Continuation
- Destination
- JobCategory
- EntryQual
- Tariff
- JobType
- Salary
You can find further details here.
Environment
2008 Local Authority Carbon Dioxide Figures
- Publisher: DECC
- Source data
- Explanatory data
- SQLITE3 file
Central Government carbon footprint, 1990 to 2008
- Publisher: DEFRA
- Source home page
Fixed penalty notices for litter
- Publisher: Defra
- Source data
- SQLITE3 file
Fixed penalty notices for graffiti
- Publisher: Defra
- Source data
- SQLITE3 file
Fixed penalty notices for flyposting
- Publisher: Defra
- Source data
- SQLITE3 file
Fixed penalty notices for noise
- Publisher: Defra
- Source data
- SQLITE3 file
Fixed penalty notices for abandoned vehicles
- Publisher: Defra
- Source data
- SQLITE3 file
Fixed penalty notices for nuisance parking
- Publisher: Defra
- Source data
- SQLITE3 file
Fixed penalty notices for street litter control
- Publisher: Defra
- Source data
- SQLITE3 file
Fixed penalty notices for street litter clearance
- Publisher: Defra
- Source data
- SQLITE3 file
Fixed penalty notices for distribution of literature
- Publisher: Defra
- Source data
- SQLITE3 file
Fixed penalty notices for waste transfer
- Publisher: Defra
- Source data
- SQLITE3 file
River Water Quality (Regions)
- Publisher:
- Source data
- SQLITE3 file
Health
A&E attendances: Provider level analysis (experimental statistics), 2009-10
- Publisher: Hospital Episode Statistics: the Information Centre
- Source home page
Doctor's surgeries
- Publisher: Linkedgov
- Source home page
- Source data
- SQLITE3 file
KSI Casualties at Highway Authority level in Great Britain
- Publisher: Department for Transport
- Source data
- Explanatory data
- SQLITE3 file
Sitereps critical care
- Publisher: Department of Health
- Source home page
Beds Open Overnight
- Publisher: Department of Health
- Source home page
Cancer waiting times, April to June 2011
- Publisher: Department of Health
- Source home page
Diagnostics
- Publisher: Department of Health
- Source home page
Inpatient and Outpatient Waiting Times statistics
- Publisher: Department of Health
- Source home page
Referral to Treatment Waiting Times Statistics
- Publisher: Department of Health
- Source home page
Mixed-Sex Accommodation
- Publisher: Department of Health
- Source home page
Cancelled Elective Operations
- Publisher: Department of Health
- Source home page
NHS 111 Minimum Data Set
- Publisher: Department of Health
- Source home page
Emergency Activity and Critical Care Capacity
- Publisher: Department of Health
- Source home page
Additional data
Playgrounds in the London Borough of Sutton
- Publisher: London Borough of Sutton
- Source data
Live traffic feeds (RSS)
- Publisher: Highways Agency
- Source data
ContractsFinder
- Publisher: BusinessLink (Department for Business, Innovation and Skills)
- Source data
Reference data
Boundary data - local authorities
- Publisher: Ordinance Survey
- Source home page
Boundary data for NHS regions (SHAs) - codes
- Publisher: Office for National Statistics
- Source data
Standard Names and Codes (SNAC) database
- Publisher: Office for National Statistics
- Source data
A history of electoral wards/divisions in England and Wales since Census Day 1991
- Publisher: Office for National Statistics
- Source data
The definitive area names and codes used in statistical production
- Publisher: Office for National Statistics
- Source data
Spreadsheet listing the names and codes of the electoral wards/divisions by local authority occurring in each health authority across the UK
- Publisher: Office for National Statistics
- Source data
Data from your university
Southampton
- University of Southampton Buildings
This report lists most of the University of Southampton buildings, along with the building ID code, lat and long, which site or campus it is on, and if available a photograph and link to a report on disabled access.
Access as:
SPARQL Query | JSON | Comma-Separated Values | XML | SQLite
- University of Southampton Points of Sale/Service
This report lists most desks, faculty offices and coffee shops at the University, plus local trainstations, parking, places of worship and other things useful to members or visitors to the university.
Access as:
SPARQL Query | JSON | Comma-Separated Values | XML | SQLite
Other University Data
While at the moment, only a few institutions are providing open data, the number is increasing all the time.
List of UK universities known to be producing (or planning) open data services
Appathon data API
The datasets are based here:
http://webstore.dgu.okfn.org/appathon
And the documentation for the webstore can be found here:
http://webstore.readthedocs.org/en/latest/
Example: using the API
Uploading data to the webstore
We have set up a user account for you to upload data. The account is appathon_user and password appathon. You can either upload a list of arbitrary json objects or formatted csv. If the keys are not there a new column will be created.
Example: Running the following will add 2 rows of data to the test table:
curl -d '[{"col1": "data", "col2": "data2"}, {"col1": "data3", "col2": "data4"}]' -u appathon_user:appathon -i -H "Content-type: application/json" http://webstore.dgu.okfn.org/appathon_user/test?table=test
Csv example:
curl --data-binary @/tmp/csvfile.csv -u appathon_user:appathon -i -H "Content-type: text/csv" http://webstore.dgu.okfn.org/appathon_user/test?table=test
Thanks,
The CKAN Team
David Raznick, skype: draznick irc:irc.freenode.net #ckan
Pawel Ratajczak, skype: ratajczakpawel123