Skip to content

Commit c57b4e9

Browse files
committed
Shortened some variable names and updated publisher URL.
1 parent 6a6497f commit c57b4e9

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

sites_of_special_scientific_interest/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
</tr>
1818
<tr>
1919
<td>Publisher URL</td>
20-
<td><a href="https://www.data.gov.uk/dataset/5b632bd7-9838-4ef2-9101-ea9384421b0d/sites-of-special-scientific-interest-england#licence-info"></a> https://www.data.gov.uk/dataset/5b632bd7-9838-4ef2-9101-ea9384421b0d/sites-of-special-scientific-interest-england#licence-info</td>
20+
<td><a href="https://www.data.gov.uk/dataset/5b632bd7-9838-4ef2-9101-ea9384421b0d/sites-of-special-scientific-interest-england"></a> https://www.data.gov.uk/dataset/5b632bd7-9838-4ef2-9101-ea9384421b0d/sites-of-special-scientific-interest-england</td>
2121
</tr>
2222
<tr>
2323
<td>Geography</td>

sites_of_special_scientific_interest/pre-processing.R

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ df_sssi <- df_sssi %>%
5454
rename(site_name = SSSI_NAME,
5555
site_area_hectares = SSSI_AREA,
5656
site_area_square_metres = Shape__Area,
57-
natural_england_site_information_system_id = ENSISID,
58-
british_national_grid_reference = REFERENCE) %>%
57+
natural_england_site_id = ENSISID,
58+
british_map_grid_reference = REFERENCE) %>%
5959
# Calculate and store the coordinates of each locality's centroid as a "lat" and "lon" property
6060
mutate(lon = map_dbl(geometry, ~st_centroid(.x)[[1]]),
6161
lat = map_dbl(geometry, ~st_centroid(.x)[[2]]),
@@ -64,8 +64,8 @@ df_sssi <- df_sssi %>%
6464
select(site_name,
6565
site_area_hectares,
6666
site_area_square_metres,
67-
natural_england_site_information_system_id,
68-
british_national_grid_reference,
67+
natural_england_site_id,
68+
british_map_grid_reference,
6969
lon,
7070
lat)
7171

0 commit comments

Comments
 (0)