This dataset, cyclehire_pts
, is an sf
object containing point locations
of cycle hire stations across London. Each observation represents a hire point with
information about its name, area, number of available bikes, and number of empty
docking slots at the time of data collection.
Usage
data(cyclehire_pts)
Format
An sf
object with 742 observations and 6 variables:
- id
Station identifier (integer)
- name
Name of the station (factor)
- area
Area of London where the station is located (factor with 121 levels)
- nbikes
Number of bikes available (integer)
- nempty
Number of empty docking slots (integer)
- geometry
Point geometry in XY coordinates (
sfc_POINT
)
Details
The dataset name has been kept as cyclehire_pts
to avoid confusion with other datasets
in the R ecosystem. This naming convention helps distinguish this dataset as part of the
lightsf
package and assists users in identifying its specific characteristics.
The suffix pts
indicates that the dataset contains point geometries.
The original content has not been modified in any way.