Skip to content

Commit 47654d9

Browse files
committed
Update Listed Buildings to Aug 2023
1 parent 3eb86a3 commit 47654d9

4 files changed

Lines changed: 552 additions & 544 deletions

File tree

listed_buildings/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
</tr>
3333
<tr>
3434
<td>Temporal coverage</td>
35-
<td>March 2018</td>
35+
<td>August 2023</td>
3636
</tr>
3737
<tr>
3838
<td>Update frequency</td>
@@ -56,7 +56,7 @@
5656
</tr>
5757
<tr>
5858
<td>Last updated</td>
59-
<td>March 2018</td>
59+
<td>September 2023</td>
6060
</tr>
6161
<tr>
6262
<td>Notes</td>

listed_buildings/pre-processing.R

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
library(tidyverse) ; library(sf)
99

1010
# load data ---------------------------
11-
sites <- st_read("ListedBuildings_09March2018.shp") %>%
12-
st_as_sf(crs = 27700, coords = c("Easting", "Northing")) %>%
13-
st_transform(4326)
11+
sites <- st_read("National_Heritage_List_for_England_(NHLE).geojson") %>%
12+
st_set_crs(4326) %>%
13+
st_cast("POINT")
1414

15-
trafford <- st_read("https://github.com/traffordDataLab/spatial_data/raw/master/local_authority/2016/trafford_local_authority_full_resolution.geojson") %>%
15+
trafford <- st_read("https://github.com/traffordDataLab/spatial_data/raw/master/local_authority/2021/trafford_local_authority_full_resolution.geojson") %>%
1616
st_set_crs(4326) %>%
1717
select(-lat, -lon)
1818

0 commit comments

Comments
 (0)