File: lnd.R

package info (click to toggle)
r-cran-spdata 0.3.8-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 6,848 kB
  • sloc: makefile: 2
file content (30 lines) | stat: -rw-r--r-- 788 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#' @name lnd
#' @aliases lnd
#' @title The boroughs of London
#'
#' @description Polygons representing large administrative zones in London
#' 
#' @format 
#' \itemize{
#'     \item{NAME} {Borough name}
#'     \item{GSS_CODE} {Official code}
#'     \item{HECTARES} {How many hectares}
#'     \item{NONLD_AREA} {Area outside London}
#'     \item{ONS_INNER} {Office for national statistics code}
#'     \item{SUB_2009} {Empty column}
#'     \item{SUB_2006} {Empty column}
#'     \item{geometry} {sfc_MULTIPOLYGON}
#' }
#' 
#' @source \url{https://github.com/Robinlovelace/Creating-maps-in-R}
#' @docType data
#' @keywords datasets sf
#' 
#' @examples 
#' if (requireNamespace("sf", quietly = TRUE)) {
#'   library(sf)
#'   data(lnd)
#'   summary(lnd)
#'   plot(st_geometry(lnd))
#' }
"lnd"