Skip to content

Commit 5c51d66

Browse files
committed
Merge branch 'leisure' bringing in changes to the leisure centres datasets following the buildings dataset update.
2 parents fa92a96 + 9077fd3 commit 5c51d66

9 files changed

Lines changed: 328 additions & 88 deletions

leisure_centres/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[<img src="thumbnail.png">](trafford_leisure_centres_styled.geojson)
1+
[<img src="thumbnail.png">](trafford_leisure_centres_and_parking_polygons_styled.geojson)
22
</br>
33

44
<table>
@@ -8,11 +8,11 @@
88
</tr>
99
<tr>
1010
<td>Dataset description</td>
11-
<td>Leisure Centres managed by Trafford Leisure CIC Limited and associated parking facilities.</td>
11+
<td>Leisure Centres and associated parking facilities in Trafford.</td>
1212
</tr>
1313
<tr>
1414
<td>Source</td>
15-
<td>Trafford Council and <a href="http://www.traffordleisure.co.uk/centres/">Trafford Leisure CIC Limited</a></td>
15+
<td><a href="https://www.trafford.gov.uk/residents/leisure-and-lifestyle/sport-and-leisure/sport-and-leisure.aspx">Trafford Council</a>, <a href="https://traffordleisure.co.uk/">Trafford Leisure CIC</a>, <a href="https://www.beactiveurmston.org/">George Carnall Community Group CIC</a></td>
1616
</tr>
1717
<tr>
1818
<td>Publisher</td>
@@ -32,7 +32,7 @@
3232
</tr>
3333
<tr>
3434
<td>Temporal coverage</td>
35-
<td>Correct as of June 2018</td>
35+
<td>Correct as of June 2023</td>
3636
</tr>
3737
<tr>
3838
<td>Update frequency</td>
@@ -44,7 +44,7 @@
4444
</tr>
4545
<tr>
4646
<td>Attribution</td>
47-
<td>Trafford Council and Trafford Leisure CIC Limited</td>
47+
<td>Trafford Council, Trafford Leisure CIC and George Carnall Community Group CIC</td>
4848
</tr>
4949
<tr>
5050
<td>Format</td>
@@ -56,14 +56,14 @@
5656
</tr>
5757
<tr>
5858
<td>Last updated</td>
59-
<td>June 2018</td>
59+
<td>2023-06-22</td>
6060
</tr>
6161
<tr>
6262
<td>Notes</td>
6363
<td></td>
6464
</tr>
6565
<tr>
6666
<td>Lab visualisation</td>
67-
<td>View data within the Lab's <a href="https://www.trafforddatalab.io/maps/explore/index.html?dataset=leisure_centres">Explore application</a>.</td>
67+
<td>View data within the Lab's Explore application for both <a href="https://www.trafforddatalab.io/maps/explore/index.html?dataset=leisure_centres">leisure centres (points)</a> and <a href="https://www.trafforddatalab.io/maps/explore/index.html?dataset=leisure_centres_and_parking">leisure centres with parking (polygons)</a>.</td>
6868
</tr>
6969
</table>

leisure_centres/pre-processing.R

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
# Leisure Centres in Trafford
2+
# 2023-06-22
3+
4+
library(tidyverse) ; library(sf)
5+
6+
# Read in the source data
7+
sf_centres_and_parking <- st_read("trafford_leisure_centres_and_parking_polygons.geojson")
8+
9+
# Create a styled version of the centres and parking polygons for use in https://www.trafforddatalab.io/explore
10+
sf_centres_and_parking %>%
11+
# replace missing values within the parking nodes with blank string
12+
replace_na(list(telephone = "", website = "", opening_hours = "", facilities = "")) %>%
13+
mutate(stroke =
14+
if_else(grepl("\\b.*?Parking", name), "#e5c494", "#fc6721"),
15+
`stroke-width` = 3,
16+
`stroke-opacity` = 1,
17+
fill = stroke,
18+
`fill-opacity` = 0.8) %>%
19+
st_write("trafford_leisure_centres_and_parking_polygons_styled.geojson")
20+
21+
# Create a CSV version of the dataset
22+
df_centres_and_parking <- sf_centres_and_parking %>%
23+
st_drop_geometry() %>%
24+
write_csv("trafford_leisure_centres_and_parking.csv")
25+
26+
27+
# Now amend the CSV, dropping the car parks, ready to create a point dataset
28+
df_centres <- df_centres_and_parking %>%
29+
filter(!grepl("\\b.*?Parking", name))
30+
31+
# Create a dataset of the centre's point locations which can be used to join with the centres CSV to create a GeoJSON point dataset
32+
df_centres_points <- tibble(name = "Move Altrincham", lon = -2.3456813925334914, lat = 53.38834687816429) %>%
33+
add_row(name = "Sale Leisure Centre", lon = -2.3159524585775513, lat = 53.42488843133235) %>%
34+
add_row(name = "Stretford Sports Village, Chester Centre", lon = -2.292924139797425, lat = 53.458544642219614) %>%
35+
add_row(name = "Stretford Sports Village, Talbot Centre", lon = -2.292381866967942, lat = 53.456315024784935) %>%
36+
add_row(name = "Stretford Sports Village, Old Trafford Sports Barn", lon = -2.2733521875550693, lat = 53.460386751389535) %>%
37+
add_row(name = "Partington Sports Village", lon = -2.42818378755827, lat = 53.41360666756395) %>%
38+
add_row(name = "Move Urmston", lon = -2.3711497029003548, lat = 53.450327457123855) %>%
39+
add_row(name = "The Grammar", lon = -2.3505202740693187, lat = 53.37550898109315) %>%
40+
add_row(name = "BeActive Urmston", lon = -2.3427956452275187, lat = 53.45788738193787)
41+
42+
# Join the centres dataset to the points, save as a CSV, then transform into a spatial file
43+
sf_centres <- df_centres %>%
44+
left_join(df_centres_points, by = "name") %>%
45+
write_csv("trafford_leisure_centres.csv") %>%
46+
st_as_sf(crs = 4326, coords = c("lon", "lat")) %>%
47+
st_write("trafford_leisure_centres.geojson")

leisure_centres/styling.R

Lines changed: 0 additions & 22 deletions
This file was deleted.
Lines changed: 10 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,10 @@
1-
name,address,postcode,telephone,opening_hours,facilities
2-
Altrincham Leisure Centre,"Oakfield Road, Altrincham",WA15 8EW,0161 926 3255,"Monday-Friday 6:30am-10pm, Saturday-Sunday 8am-10pm","Health and Fitness Suite, 25m Main pool, 20m Teaching pool, Spinning studio, Exercise classes, Sports Hall, Squash court, Creche"
3-
Altrincham Leisure Centre Parking,"Oakfield Road, Altrincham",WA15 8EW,NA,NA,NA
4-
George H Carnall Leisure Centre,"Kingsway Park, Urmston",M41 7FJ,0161 749 2555,"Monday-Thursday 8:15am-10pm, Friday 8:15am-9pm, Saturday 8:15am-4pm, Sunday 8:15am-4pm","Fitness Suite, Large Sports Hall, Badminton Courts, Squash Courts, Massage
5-
"
6-
George H Carnall Leisure Centre Parking,"Kingsway Park, Urmston",M41 7FJ,NA,NA,NA
7-
Partington Sports Village,"Chapel Lane, Partington",M31 4ES,0161 777 4222,"Monday - Friday - 4pm - 10pm, Saturday & Sunday - 9am - 5pm","Gym, Exercise Studio, Swimming Pool, Sports Hall, Tennis Courts, Outdoor 3G Football Pitch"
8-
Partington Sports Village Parking,"Chapel Lane, Partington",M31 4ES,NA,NA,NA
9-
Sale Leisure Centre,"Broad Road, Sale",M33 2AL,0161 905 5588,"Monday-Friday 6:30am-10:30pm, Saturday 8am-7pm, Sunday 8am-10pm","Fitness Suite, 25m Pool, 12m teaching pool, 20m club pool, Exercise studios, Spinning studio, Sports hall"
10-
Sale Leisure Centre Parking,"Broad Road/Woodlands Road, Sale",M33 2AL,NA,NA,NA
11-
Stretford Sports Village - Chester and Talbot Centres Parking,"Great Stone Road, Stretford",M32 0ZS,NA,NA,NA
12-
Stretford Sports Village - Chester Centre,"Great Stone Road, Stretford",M32 0ZS,0161 875 1414,"Monday-Friday 7am-10pm, Saturday-Sunday 8am-6pm","25m Pool, 20m Teaching Pool, Health and Fitness Suite, Female Only Gym, Spin Studio, Sports Hall, Badminton, 5 a side, Table Tennis, Exercise Classes"
13-
Stretford Sports Village - Sports Barn,"Seymour Park, Old Trafford",M16 9PQ,0161 873 7335,"Monday - 3:30pm - 10pm, Tuesday - Thursday - 10am - 10pm, Friday 2:30pm - 10pm, Saturday & Sunday - 10am - 6pm","Sports Hall (4 x Badminton courts), Outdoor Artificial 3G floodlght pitch, Outdoor Hard Courts"
14-
Stretford Sports Village - Sports Barn Parking,"Seymour Park, Old Trafford",M16 9PQ,NA,NA,NA
15-
Stretford Sports Village - Talbot Centre,"Great Stone Road, Stretford",M32 0XA,0161 826 1001,"Monday-Friday 7am-10pm, Saturday-Sunday 8am-6pm","Health and Fitness Suite, 4G Pitch, Grass Pitch, Sports Hall, Badminton, Dance Studio, Exercise Classes"
16-
The Grammar,"Marlborough Road, Bowdon, Altrincham",WA14 2RS,0161 929 1078,"Monday – Friday – 7.00am – 8.45am & 5.00pm – 10.00pm, Saturday & Sunday – 9.00am – 5.00pm, During School Holidays (Mon-Fri) – 7.00am – 10.00pm, Weekends – 9.00am – 5.00pm","Gym, Sports Hall, Practice Hall, All Weather Pitch, 1 Cricket Square, 4 Outdoor Artifical Tennis Courts, Indoor Cricket Nets"
17-
The Grammar Parking,"Marlborough Road, Bowdon, Altrincham",WA14 2RS,NA,NA,NA
18-
Urmston Leisure Centre,"Bowfell Road, Urmston",M41 5RR,0161 749 2570,"Monday-Thursday 7am-10pm, Friday 7am-9pm, Saturday 9am-6pm, Sunday 9am-4:45pm","Fitness Suite, Sports Hall, Badminton, Spinning, Exercise Classes, 25m pool, 10m teaching pool, Village changing"
19-
Urmston Leisure Centre Parking,"Bowfell Road, Urmston",M41 5RR,NA,NA,NA
1+
name,address,postcode,telephone,website,opening_hours,facilities,managed_by,lon,lat
2+
Move Altrincham,"Oakfield Road, Altrincham",WA15 8EW,01617492570,https://traffordleisure.co.uk/altrincham-refurbishment-updates-and-help/,"Temporarily closed for refurbishment, re-opening in 2024","25m swimming pool, 20m leisure pool, pool pod to improve accessibility, welcoming lobby area combining pool viewing and café, village wet change (unisex), inclusive changing places toilet (a first for Altrincham town centre), health and wellbeing spa facility, wellness assessment room, state-of-the-art fitness space incorporating Technogym equipment with my wellness technology, fitness changing and dry change areas, two group exercise studio spaces, immersive indoor cycle studio, four-court sports hall, modern gymnastics hub",Trafford Leisure CIC.,-2.3456813925334914,53.38834687816429
3+
Sale Leisure Centre,"Broad Road, Sale",M33 2AL,01617492570,https://traffordleisure.co.uk/centres/sale/,"Mon-Fri: 6:30am-9:30pm, Sat-Sun: 8:00am-6:00pm","Sale has a multifunctional gym, spinning studio, 25-metre main swimming pool & a small kids swimming pool and also a club training pool, spectator area, sports hall, badminton, and more.",Trafford Leisure CIC.,-2.3159524585775513,53.42488843133235
4+
"Stretford Sports Village, Chester Centre","Great Stone Road, Stretford",M32 0ZS,01617492570,https://traffordleisure.co.uk/centres/stretford-sports-village/,"Mon-Fri: 6.30am-10:00pm, Sat-Sun: 8:00am-6:00pm","Stretford has a multifunctional gym and studio, a ladies gym, a 25-metre swimming pool and a small swimming pool, a sports hall, badminton, and more.",Trafford Leisure CIC.,-2.292924139797425,53.458544642219614
5+
"Stretford Sports Village, Talbot Centre","Great Stone Road, Stretford",M32 0XA,01617492570,https://traffordleisure.co.uk/centres/stretford-talbot/,"Mon-Fri: 5:00pm-10:00pm, Sat-Sun 9:00am-5:00pm","The Talbot Centre provides the local community with modern leisure, health and wellbeing facilities. The centre provides a comprehensive leisure package with activities and sessions for the whole community.",Trafford Leisure CIC.,-2.292381866967942,53.456315024784935
6+
"Stretford Sports Village, Old Trafford Sports Barn","Seymour Park, Old Trafford",M16 9PQ,01617492570,https://traffordleisure.co.uk/centres/sports-barn/,"Mon-Fri: 5:00pm-10:00pm, Sat-Sun: 10:00am-6:00pm","Sports Hall (4 x Badminton courts), Outdoor Artificial 3G floodlght pitch, Outdoor Hard Courts, Disabled Changing facilities.",Trafford Leisure CIC.,-2.2733521875550693,53.460386751389535
7+
Partington Sports Village,"Chapel Lane, Partington",M31 4ES,01617492570,https://traffordleisure.co.uk/centres/partington/,"Mon-Tue: 9:00am-10:00pm, Wed-Fri: 3:00pm-10:00pm, Sat-Sun: 9:00am-5:00pm","Partington has a multifunctional gym and studio, 20 metre swimming pool, double sports hall for football/5 aside, badminton, basketball and more.",Trafford Leisure CIC.,-2.42818378755827,53.41360666756395
8+
Move Urmston,"Bowfell Road, Urmston",M41 5RR,01617492570,https://twmove.co.uk,"Mon-Fri 6:30am-10:00pm, Sat-Sun: 8:00am-6:00pm","Badminton, Birthdays & Events, Clip and Climb, Fitness and Wellbeing Gym, Fitness Classes, Sensory Room, Swimming, Table Tennis",Trafford Leisure CIC.,-2.3711497029003548,53.450327457123855
9+
The Grammar,"Altrincham Grammar School for Boys, Marlborough Road, Bowdon, Altrincham",WA14 2RS,01619291078,https://thegrammar.co.uk,"Mon-Fri (term time): 7:00am-8:45am & 5:00pm-10:00pm, Mon-Fri (school holidays): 7:00am-10:00pm, Sat-Sun: 9:00am-5:00pm","Gym, Sports Hall, Practice Hall, All Weather Pitch, 1 Cricket Square, 4 Outdoor Artifical Tennis Courts, Indoor Cricket Nets",Trafford Leisure CIC.,-2.3505202740693187,53.37550898109315
10+
BeActive Urmston,"Kingsway Park, Urmston",M41 7FJ,01614133750,https://www.beactiveurmston.org,"Mon-Fri: 7:00am-9:00pm, Sat-Sun: 9:00am-4:00pm","From our fully-refurbished gym and personal training, to our great class timetable, accessible sports like walking netball, walking football and pickleball, and versatile spaces where you can meet up with others, we help you to achieve your health and wellbeing goals and build a happier, healthier Urmston.",George Carnall Community Group CIC.,-2.3427956452275187,53.45788738193787

0 commit comments

Comments
 (0)