Learn R Programming

giscoR (version 0.2.4)

gisco_coastallines: World coastal lines POLYGON object

Description

A sf object as provided by GISCO (2016 version).

Arguments

Format

A POLYGON data frame (resolution: 1:20million, EPSG:4326) object with 3 variables:

  • FID

  • COAS_ID

  • geometry: geometry field

See Also

gisco_get_coastallines()

Examples

Run this code
# NOT RUN {
library(sf)

coasts <- gisco_coastallines

plot(
  st_geometry(coasts),
  xlim = c(100, 120),
  ylim = c(-24, 24),
  col = "grey90",
  border = "deepskyblue4",
  lwd = 2
)
box()
title(
  main = "Coasts on Southeastern Asia",
  sub = gisco_attributions(),
  cex.sub = 0.7,
  line = 1
)
# }

Run the code above in your browser using DataLab